├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── bin ├── install_ubuntu.sh ├── mopidy.conf ├── package-pypi.sh └── partify.conf ├── docs ├── Makefile ├── api │ ├── history.rst │ ├── index.rst │ ├── player.rst │ ├── queue.rst │ ├── search.rst │ ├── statistics.rst │ └── vote.rst ├── conf.py ├── index.rst ├── modules │ ├── admin.rst │ ├── config.rst │ ├── database.rst │ ├── decorators.rst │ ├── forms │ │ ├── admin.rst │ │ ├── index.rst │ │ └── user.rst │ ├── history.rst │ ├── index.rst │ ├── ipc.rst │ ├── models.rst │ ├── player.rst │ ├── priv.rst │ ├── queue.rst │ ├── selection.rst │ ├── statistics.rst │ ├── toplevel.rst │ ├── track.rst │ ├── user.rst │ └── vote.rst └── user_manual │ ├── configuration.rst │ ├── index.rst │ ├── installation.rst │ └── upgrading.rst ├── partify ├── Makefile ├── __init__.py ├── admin.py ├── config.py ├── database.py ├── decorators.py ├── forms │ ├── __init__.py │ ├── admin_forms.py │ └── user_forms.py ├── history.py ├── ipc.py ├── js │ └── player │ │ ├── history.coffee │ │ ├── player.coffee │ │ ├── queue.coffee │ │ ├── search.coffee │ │ ├── statistics.coffee │ │ └── workers │ │ └── player_event.coffee ├── models.py ├── mpd.py ├── playback.py ├── player.py ├── priv.py ├── queue.py ├── selection.py ├── static │ ├── css │ │ ├── admin.css │ │ ├── blueprint │ │ │ ├── ie.css │ │ │ ├── plugins │ │ │ │ ├── buttons │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── cross.png │ │ │ │ │ │ ├── key.png │ │ │ │ │ │ └── tick.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── screen.css │ │ │ │ ├── fancy-type │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── screen.css │ │ │ │ ├── link-icons │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── email.png │ │ │ │ │ │ ├── external.png │ │ │ │ │ │ ├── feed.png │ │ │ │ │ │ ├── im.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── visited.png │ │ │ │ │ │ └── xls.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── screen.css │ │ │ │ └── rtl │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── screen.css │ │ │ ├── print.css │ │ │ ├── screen.css │ │ │ └── src │ │ │ │ ├── forms.css │ │ │ │ ├── grid.css │ │ │ │ ├── grid.png │ │ │ │ ├── ie.css │ │ │ │ ├── print.css │ │ │ │ ├── reset.css │ │ │ │ └── typography.css │ │ ├── common.css │ │ ├── jquery-ui │ │ │ └── partify │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_65_272822_40x100.png │ │ │ │ ├── ui-bg_flat_75_272822_40x100.png │ │ │ │ ├── ui-bg_flat_75_49483e_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_32_49483e_1x100.png │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_f8f8f2_256x240.png │ │ │ │ └── ui-icons_fd971f_256x240.png │ │ │ │ └── jquery-ui-1.8.14.custom.css │ │ ├── partify.css │ │ └── player.css │ ├── img │ │ ├── loading.gif │ │ ├── penguin.png │ │ └── player │ │ │ └── bg.png │ └── js │ │ └── lib │ │ ├── jquery-1.6.2.js │ │ ├── jquery-ui-1.8.14.custom.min.js │ │ ├── jquery.timeago.js │ │ ├── lastfm.api.cache.js │ │ ├── lastfm.api.js │ │ └── lastfm.api.md5.js ├── statistics.py ├── templates │ ├── _util.html │ ├── account_settings.html │ ├── admin.html │ ├── base.tmpl │ ├── base_unauth.html │ ├── common.html │ ├── i_love_this_web_thing.html │ ├── login.html │ ├── player.html │ └── register.html ├── track.py ├── user.py └── vote.py ├── run_partify ├── setup.py ├── testing ├── __init__.py ├── data │ ├── __init__.py │ └── sample_tracks.py ├── logged_in_user_test_case.py ├── mocks │ ├── __init__.py │ └── mock_mpd_client.py └── partify_test_case.py └── tests ├── __init__.py ├── admin_test.py ├── config_test.py ├── decorator_test.py ├── history_test.py ├── player_test.py ├── priv_test.py ├── queue_test.py ├── statistics_test.py ├── track_test.py ├── user_test.py └── vote_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/README.rst -------------------------------------------------------------------------------- /bin/install_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/bin/install_ubuntu.sh -------------------------------------------------------------------------------- /bin/mopidy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/bin/mopidy.conf -------------------------------------------------------------------------------- /bin/package-pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/bin/package-pypi.sh -------------------------------------------------------------------------------- /bin/partify.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/bin/partify.conf -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/history.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/player.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/player.rst -------------------------------------------------------------------------------- /docs/api/queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/queue.rst -------------------------------------------------------------------------------- /docs/api/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/search.rst -------------------------------------------------------------------------------- /docs/api/statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/statistics.rst -------------------------------------------------------------------------------- /docs/api/vote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/api/vote.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/modules/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/admin.rst -------------------------------------------------------------------------------- /docs/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/config.rst -------------------------------------------------------------------------------- /docs/modules/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/database.rst -------------------------------------------------------------------------------- /docs/modules/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/decorators.rst -------------------------------------------------------------------------------- /docs/modules/forms/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/forms/admin.rst -------------------------------------------------------------------------------- /docs/modules/forms/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/forms/index.rst -------------------------------------------------------------------------------- /docs/modules/forms/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/forms/user.rst -------------------------------------------------------------------------------- /docs/modules/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/history.rst -------------------------------------------------------------------------------- /docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/index.rst -------------------------------------------------------------------------------- /docs/modules/ipc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/ipc.rst -------------------------------------------------------------------------------- /docs/modules/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/models.rst -------------------------------------------------------------------------------- /docs/modules/player.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/player.rst -------------------------------------------------------------------------------- /docs/modules/priv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/priv.rst -------------------------------------------------------------------------------- /docs/modules/queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/queue.rst -------------------------------------------------------------------------------- /docs/modules/selection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/selection.rst -------------------------------------------------------------------------------- /docs/modules/statistics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/statistics.rst -------------------------------------------------------------------------------- /docs/modules/toplevel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/toplevel.rst -------------------------------------------------------------------------------- /docs/modules/track.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/track.rst -------------------------------------------------------------------------------- /docs/modules/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/user.rst -------------------------------------------------------------------------------- /docs/modules/vote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/modules/vote.rst -------------------------------------------------------------------------------- /docs/user_manual/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/user_manual/configuration.rst -------------------------------------------------------------------------------- /docs/user_manual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/user_manual/index.rst -------------------------------------------------------------------------------- /docs/user_manual/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/user_manual/installation.rst -------------------------------------------------------------------------------- /docs/user_manual/upgrading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/docs/user_manual/upgrading.rst -------------------------------------------------------------------------------- /partify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/Makefile -------------------------------------------------------------------------------- /partify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/__init__.py -------------------------------------------------------------------------------- /partify/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/admin.py -------------------------------------------------------------------------------- /partify/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/config.py -------------------------------------------------------------------------------- /partify/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/database.py -------------------------------------------------------------------------------- /partify/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/decorators.py -------------------------------------------------------------------------------- /partify/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/forms/__init__.py -------------------------------------------------------------------------------- /partify/forms/admin_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/forms/admin_forms.py -------------------------------------------------------------------------------- /partify/forms/user_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/forms/user_forms.py -------------------------------------------------------------------------------- /partify/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/history.py -------------------------------------------------------------------------------- /partify/ipc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/ipc.py -------------------------------------------------------------------------------- /partify/js/player/history.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/js/player/history.coffee -------------------------------------------------------------------------------- /partify/js/player/player.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/js/player/player.coffee -------------------------------------------------------------------------------- /partify/js/player/queue.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/js/player/queue.coffee -------------------------------------------------------------------------------- /partify/js/player/search.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/js/player/search.coffee -------------------------------------------------------------------------------- /partify/js/player/statistics.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/js/player/statistics.coffee -------------------------------------------------------------------------------- /partify/js/player/workers/player_event.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/js/player/workers/player_event.coffee -------------------------------------------------------------------------------- /partify/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/models.py -------------------------------------------------------------------------------- /partify/mpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/mpd.py -------------------------------------------------------------------------------- /partify/playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/playback.py -------------------------------------------------------------------------------- /partify/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/player.py -------------------------------------------------------------------------------- /partify/priv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/priv.py -------------------------------------------------------------------------------- /partify/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/queue.py -------------------------------------------------------------------------------- /partify/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/selection.py -------------------------------------------------------------------------------- /partify/static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/admin.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/ie.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/buttons/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/buttons/icons/cross.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/buttons/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/buttons/icons/key.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/buttons/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/buttons/icons/tick.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/buttons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/buttons/readme.txt -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/buttons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/buttons/screen.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/fancy-type/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/fancy-type/readme.txt -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/fancy-type/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/fancy-type/screen.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/doc.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/email.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/external.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/feed.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/im.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/lock.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/pdf.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/visited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/visited.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/icons/xls.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/readme.txt -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/link-icons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/link-icons/screen.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/rtl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/rtl/readme.txt -------------------------------------------------------------------------------- /partify/static/css/blueprint/plugins/rtl/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/plugins/rtl/screen.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/print.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/screen.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/forms.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/grid.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/grid.png -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/ie.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/print.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/reset.css -------------------------------------------------------------------------------- /partify/static/css/blueprint/src/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/blueprint/src/typography.css -------------------------------------------------------------------------------- /partify/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/common.css -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_flat_65_272822_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_flat_65_272822_40x100.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_flat_75_272822_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_flat_75_272822_40x100.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_flat_75_49483e_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_flat_75_49483e_40x100.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_highlight-soft_32_49483e_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_highlight-soft_32_49483e_1x100.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-icons_f8f8f2_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-icons_f8f8f2_256x240.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/images/ui-icons_fd971f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/images/ui-icons_fd971f_256x240.png -------------------------------------------------------------------------------- /partify/static/css/jquery-ui/partify/jquery-ui-1.8.14.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/jquery-ui/partify/jquery-ui-1.8.14.custom.css -------------------------------------------------------------------------------- /partify/static/css/partify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/partify.css -------------------------------------------------------------------------------- /partify/static/css/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/css/player.css -------------------------------------------------------------------------------- /partify/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/img/loading.gif -------------------------------------------------------------------------------- /partify/static/img/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/img/penguin.png -------------------------------------------------------------------------------- /partify/static/img/player/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/img/player/bg.png -------------------------------------------------------------------------------- /partify/static/js/lib/jquery-1.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/js/lib/jquery-1.6.2.js -------------------------------------------------------------------------------- /partify/static/js/lib/jquery-ui-1.8.14.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/js/lib/jquery-ui-1.8.14.custom.min.js -------------------------------------------------------------------------------- /partify/static/js/lib/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/js/lib/jquery.timeago.js -------------------------------------------------------------------------------- /partify/static/js/lib/lastfm.api.cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/js/lib/lastfm.api.cache.js -------------------------------------------------------------------------------- /partify/static/js/lib/lastfm.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/js/lib/lastfm.api.js -------------------------------------------------------------------------------- /partify/static/js/lib/lastfm.api.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/static/js/lib/lastfm.api.md5.js -------------------------------------------------------------------------------- /partify/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/statistics.py -------------------------------------------------------------------------------- /partify/templates/_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/_util.html -------------------------------------------------------------------------------- /partify/templates/account_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/account_settings.html -------------------------------------------------------------------------------- /partify/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/admin.html -------------------------------------------------------------------------------- /partify/templates/base.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /partify/templates/base_unauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/base_unauth.html -------------------------------------------------------------------------------- /partify/templates/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/common.html -------------------------------------------------------------------------------- /partify/templates/i_love_this_web_thing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/i_love_this_web_thing.html -------------------------------------------------------------------------------- /partify/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/login.html -------------------------------------------------------------------------------- /partify/templates/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/player.html -------------------------------------------------------------------------------- /partify/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/templates/register.html -------------------------------------------------------------------------------- /partify/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/track.py -------------------------------------------------------------------------------- /partify/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/user.py -------------------------------------------------------------------------------- /partify/vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/partify/vote.py -------------------------------------------------------------------------------- /run_partify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/run_partify -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/setup.py -------------------------------------------------------------------------------- /testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/__init__.py -------------------------------------------------------------------------------- /testing/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/data/__init__.py -------------------------------------------------------------------------------- /testing/data/sample_tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/data/sample_tracks.py -------------------------------------------------------------------------------- /testing/logged_in_user_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/logged_in_user_test_case.py -------------------------------------------------------------------------------- /testing/mocks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/mocks/__init__.py -------------------------------------------------------------------------------- /testing/mocks/mock_mpd_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/mocks/mock_mpd_client.py -------------------------------------------------------------------------------- /testing/partify_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/testing/partify_test_case.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/admin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/admin_test.py -------------------------------------------------------------------------------- /tests/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/config_test.py -------------------------------------------------------------------------------- /tests/decorator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/decorator_test.py -------------------------------------------------------------------------------- /tests/history_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/history_test.py -------------------------------------------------------------------------------- /tests/player_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/player_test.py -------------------------------------------------------------------------------- /tests/priv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/priv_test.py -------------------------------------------------------------------------------- /tests/queue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/queue_test.py -------------------------------------------------------------------------------- /tests/statistics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/statistics_test.py -------------------------------------------------------------------------------- /tests/track_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/track_test.py -------------------------------------------------------------------------------- /tests/user_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/user_test.py -------------------------------------------------------------------------------- /tests/vote_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhats/partify/HEAD/tests/vote_test.py --------------------------------------------------------------------------------