├── .gitignore ├── .travis.yml ├── README.md ├── package.bat ├── pom.xml ├── repo ├── ant-zip │ └── ant-zip │ │ └── 1.6.2 │ │ ├── ant-zip-1.6.2.jar │ │ └── ant-zip-1.6.2.pom ├── com │ ├── hoodcomputing │ │ └── natpmp │ │ │ └── 0.1 │ │ │ ├── natpmp-0.1-sources.jar │ │ │ ├── natpmp-0.1.jar │ │ │ └── natpmp-0.1.pom │ ├── jgoodies │ │ ├── forms │ │ │ └── 1.1.0 │ │ │ │ ├── forms-1.1.0-sources.jar │ │ │ │ ├── forms-1.1.0.jar │ │ │ │ └── forms-1.1.0.pom │ │ └── looks │ │ │ └── 2.1.4 │ │ │ ├── looks-2.1.4.jar │ │ │ └── looks-2.1.4.pom │ └── oracle │ │ └── appbundler │ │ └── 1.0 │ │ ├── appbundler-1.0.jar │ │ └── appbundler-1.0.pom ├── javax │ └── xml │ │ └── jaxrpc │ │ └── 1.1 │ │ ├── jaxrpc-1.1.jar │ │ └── jaxrpc-1.1.pom ├── net │ ├── sbbi │ │ └── sbbi-upnplib │ │ │ └── 1.0.4 │ │ │ ├── sbbi-upnplib-1.0.4-sources.jar │ │ │ ├── sbbi-upnplib-1.0.4.jar │ │ │ └── sbbi-upnplib-1.0.4.pom │ ├── sourceforge │ │ └── jarbundler │ │ │ └── jarbundler │ │ │ └── 2.1.0 │ │ │ ├── jarbundler-2.1.0.jar │ │ │ └── jarbundler-2.1.0.pom │ └── tanesha │ │ └── recaptcha4j │ │ └── recaptcha4j │ │ └── 0.0.8 │ │ ├── recaptcha4j-0.0.8-sources.jar │ │ ├── recaptcha4j-0.0.8.jar │ │ └── recaptcha4j-0.0.8.pom └── org │ ├── directwebremoting │ └── dwr │ │ └── 3.0.rc1 │ │ ├── dwr-3.0.rc1-sources.jar │ │ ├── dwr-3.0.rc1.jar │ │ └── dwr-3.0.rc1.pom │ ├── terracotta │ └── ehcache-probe │ │ └── 1.0.3 │ │ ├── ehcache-probe-1.0.3.jar │ │ └── ehcache-probe-1.0.3.pom │ └── wetorrent │ └── weupnp │ └── 2009-10-16 │ ├── weupnp-2009-10-16-sources.jar │ ├── weupnp-2009-10-16.jar │ └── weupnp-2009-10-16.pom ├── subsonic-android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── settings.gradle └── subsonic │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.txt │ ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── html │ │ │ ├── en │ │ │ └── index.html │ │ │ ├── img │ │ │ ├── paypal.gif │ │ │ └── subsonic.png │ │ │ └── style.css │ │ ├── java │ │ └── net │ │ │ └── sourceforge │ │ │ └── subsonic │ │ │ └── androidapp │ │ │ ├── activity │ │ │ ├── DownloadActivity.java │ │ │ ├── EqualizerActivity.java │ │ │ ├── HelpActivity.java │ │ │ ├── LyricsActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── QueryReceiverActivity.java │ │ │ ├── SearchActivity.java │ │ │ ├── SelectAlbumActivity.java │ │ │ ├── SelectArtistActivity.java │ │ │ ├── SelectPlaylistActivity.java │ │ │ ├── SettingsActivity.java │ │ │ ├── SubsonicTabActivity.java │ │ │ └── VoiceQueryReceiverActivity.java │ │ │ ├── audiofx │ │ │ ├── EqualizerController.java │ │ │ └── VisualizerController.java │ │ │ ├── domain │ │ │ ├── Artist.java │ │ │ ├── Indexes.java │ │ │ ├── JukeboxStatus.java │ │ │ ├── Lyrics.java │ │ │ ├── MusicDirectory.java │ │ │ ├── MusicFolder.java │ │ │ ├── PlayerState.java │ │ │ ├── Playlist.java │ │ │ ├── RepeatMode.java │ │ │ ├── SearchCritera.java │ │ │ ├── SearchResult.java │ │ │ ├── ServerInfo.java │ │ │ └── Version.java │ │ │ ├── provider │ │ │ ├── CustomSuggestionsProvider.java │ │ │ └── SubsonicAppWidgetProvider.java │ │ │ ├── receiver │ │ │ ├── BluetoothIntentReceiver.java │ │ │ └── MediaButtonIntentReceiver.java │ │ │ ├── service │ │ │ ├── AudioManagerHelper.java │ │ │ ├── CachedMusicService.java │ │ │ ├── DownloadFile.java │ │ │ ├── DownloadService.java │ │ │ ├── DownloadServiceImpl.java │ │ │ ├── DownloadServiceLifecycleSupport.java │ │ │ ├── JukeboxService.java │ │ │ ├── MediaStoreService.java │ │ │ ├── MusicService.java │ │ │ ├── MusicServiceFactory.java │ │ │ ├── OfflineException.java │ │ │ ├── OfflineMusicService.java │ │ │ ├── RESTMusicService.java │ │ │ ├── Scrobbler.java │ │ │ ├── ServerTooOldException.java │ │ │ ├── parser │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── AlbumListParser.java │ │ │ │ ├── ErrorParser.java │ │ │ │ ├── IndexesParser.java │ │ │ │ ├── JukeboxStatusParser.java │ │ │ │ ├── LicenseParser.java │ │ │ │ ├── LyricsParser.java │ │ │ │ ├── MusicDirectoryEntryParser.java │ │ │ │ ├── MusicDirectoryParser.java │ │ │ │ ├── MusicFoldersParser.java │ │ │ │ ├── PlaylistParser.java │ │ │ │ ├── PlaylistsParser.java │ │ │ │ ├── RandomSongsParser.java │ │ │ │ ├── SearchResult2Parser.java │ │ │ │ ├── SearchResultParser.java │ │ │ │ ├── ShareParser.java │ │ │ │ ├── SubsonicRESTException.java │ │ │ │ └── VersionParser.java │ │ │ └── ssl │ │ │ │ ├── SSLSocketFactory.java │ │ │ │ ├── TrustManagerDecorator.java │ │ │ │ ├── TrustSelfSignedStrategy.java │ │ │ │ └── TrustStrategy.java │ │ │ ├── util │ │ │ ├── AlbumView.java │ │ │ ├── ArtistAdapter.java │ │ │ ├── BackgroundTask.java │ │ │ ├── CacheCleaner.java │ │ │ ├── CancellableTask.java │ │ │ ├── Constants.java │ │ │ ├── EntryAdapter.java │ │ │ ├── ErrorDialog.java │ │ │ ├── FadeOutAnimation.java │ │ │ ├── FileUtil.java │ │ │ ├── ImageLoader.java │ │ │ ├── LRUCache.java │ │ │ ├── Logger.java │ │ │ ├── MergeAdapter.java │ │ │ ├── ModalBackgroundTask.java │ │ │ ├── MyViewFlipper.java │ │ │ ├── NotificationUtil.java │ │ │ ├── Pair.java │ │ │ ├── PlaylistAdapter.java │ │ │ ├── PopupMenuHelper.java │ │ │ ├── PopupMenuHelperBase.java │ │ │ ├── PopupMenuHelperHoneycomb.java │ │ │ ├── ProgressListener.java │ │ │ ├── SackOfViewsAdapter.java │ │ │ ├── ServerSettingsManager.java │ │ │ ├── ShareUtil.java │ │ │ ├── ShufflePlayBuffer.java │ │ │ ├── SilentBackgroundTask.java │ │ │ ├── SimpleServiceBinder.java │ │ │ ├── SongView.java │ │ │ ├── StarUtil.java │ │ │ ├── SubsonicUncaughtExceptionHandler.java │ │ │ ├── TabActivityBackgroundTask.java │ │ │ ├── TimeLimitedCache.java │ │ │ ├── Util.java │ │ │ └── VideoPlayerType.java │ │ │ └── view │ │ │ └── VisualizerView.java │ │ └── res │ │ ├── anim │ │ ├── push_down_in.xml │ │ ├── push_down_out.xml │ │ ├── push_up_in.xml │ │ └── push_up_out.xml │ │ ├── drawable-hdpi │ │ ├── action_overflow.png │ │ ├── action_overflow_small.png │ │ ├── action_play_all.png │ │ ├── action_refresh.png │ │ ├── action_search.png │ │ ├── action_shuffle.png │ │ ├── album_art_background.png │ │ ├── appwidget_bg.9.png │ │ ├── collections_cloud.png │ │ ├── content_remove.png │ │ ├── download_cached.png │ │ ├── download_pinned.png │ │ ├── download_streaming.png │ │ ├── ic_ab_back_holo_dark.png │ │ ├── ic_action_album.png │ │ ├── ic_action_artist.png │ │ ├── ic_action_share.png │ │ ├── ic_action_song.png │ │ ├── ic_appwidget_music_next.png │ │ ├── ic_appwidget_music_pause.png │ │ ├── ic_appwidget_music_play.png │ │ ├── ic_appwidget_music_previous.png │ │ ├── ic_close_notification.png │ │ ├── launch.png │ │ ├── media_toggle_list.png │ │ ├── menubar_button_selected.9.png │ │ ├── navigate_down.png │ │ ├── navigate_right.png │ │ ├── now_playing.png │ │ ├── scrubber_control_disabled_focused_holo.png │ │ ├── scrubber_control_disabled_holo.png │ │ ├── scrubber_control_focused_holo.png │ │ ├── scrubber_control_normal_holo.png │ │ ├── scrubber_control_pressed_holo.png │ │ ├── scrubber_primary_holo.9.png │ │ ├── scrubber_secondary_holo.9.png │ │ ├── scrubber_track_holo_dark.9.png │ │ ├── starred.png │ │ ├── stat_notify_playing.png │ │ ├── toast_frame.9.png │ │ ├── unknown_album.png │ │ ├── unstarred.png │ │ └── volume.png │ │ ├── drawable-mdpi │ │ ├── action_overflow.png │ │ ├── action_overflow_small.png │ │ ├── action_play_all.png │ │ ├── action_refresh.png │ │ ├── action_search.png │ │ ├── action_shuffle.png │ │ ├── appwidget_bg.9.png │ │ ├── collections_cloud.png │ │ ├── content_remove.png │ │ ├── download_cached.png │ │ ├── download_pinned.png │ │ ├── download_streaming.png │ │ ├── ic_ab_back_holo_dark.png │ │ ├── ic_action_album.png │ │ ├── ic_action_artist.png │ │ ├── ic_action_share.png │ │ ├── ic_action_song.png │ │ ├── ic_close_notification.png │ │ ├── launch.png │ │ ├── media_toggle_list.png │ │ ├── menubar_button_selected.9.png │ │ ├── navigate_down.png │ │ ├── navigate_right.png │ │ ├── now_playing.png │ │ ├── scrubber_control_disabled_focused_holo.png │ │ ├── scrubber_control_disabled_holo.png │ │ ├── scrubber_control_focused_holo.png │ │ ├── scrubber_control_normal_holo.png │ │ ├── scrubber_control_pressed_holo.png │ │ ├── scrubber_primary_holo.9.png │ │ ├── scrubber_secondary_holo.9.png │ │ ├── scrubber_track_holo_dark.9.png │ │ ├── starred.png │ │ ├── stat_notify_playing.png │ │ ├── toast_frame.9.png │ │ ├── unknown_album.png │ │ ├── unstarred.png │ │ └── volume.png │ │ ├── drawable-nodpi │ │ ├── appwidget_art_unknown.png │ │ ├── background.png │ │ ├── media_backward.png │ │ ├── media_forward.png │ │ ├── media_pause.png │ │ ├── media_repeat_all.png │ │ ├── media_repeat_off.png │ │ ├── media_repeat_single.png │ │ ├── media_shuffle_off.png │ │ ├── media_shuffle_on.png │ │ ├── media_start.png │ │ ├── media_stop.png │ │ ├── unknown_album_large.png │ │ └── widget_preview.png │ │ ├── drawable-xhdpi │ │ ├── action_overflow.png │ │ ├── action_overflow_small.png │ │ ├── action_play_all.png │ │ ├── action_refresh.png │ │ ├── action_search.png │ │ ├── action_shuffle.png │ │ ├── appwidget_bg.9.png │ │ ├── collections_cloud.png │ │ ├── content_remove.png │ │ ├── download_cached.png │ │ ├── download_pinned.png │ │ ├── download_streaming.png │ │ ├── ic_ab_back_holo_dark.png │ │ ├── ic_action_album.png │ │ ├── ic_action_artist.png │ │ ├── ic_action_share.png │ │ ├── ic_action_song.png │ │ ├── ic_close_notification.png │ │ ├── launch.png │ │ ├── media_toggle_list.png │ │ ├── menubar_button_selected.9.png │ │ ├── navigate_down.png │ │ ├── navigate_right.png │ │ ├── now_playing.png │ │ ├── scrubber_control_disabled_focused_holo.png │ │ ├── scrubber_control_disabled_holo.png │ │ ├── scrubber_control_focused_holo.png │ │ ├── scrubber_control_normal_holo.png │ │ ├── scrubber_control_pressed_holo.png │ │ ├── scrubber_primary_holo.9.png │ │ ├── scrubber_secondary_holo.9.png │ │ ├── scrubber_track_holo_dark.9.png │ │ ├── starred.png │ │ ├── stat_notify_playing.png │ │ ├── toast_frame.9.png │ │ ├── unknown_album.png │ │ ├── unstarred.png │ │ └── volume.png │ │ ├── drawable │ │ ├── actionbar_button.xml │ │ ├── media_button.xml │ │ ├── menubar_button.xml │ │ ├── menubar_button_normal.xml │ │ ├── menubar_button_pressed.xml │ │ ├── scrubber_control_selector_holo.xml │ │ └── scrubber_progress_horizontal_holo_dark.xml │ │ ├── layout-land │ │ └── download.xml │ │ ├── layout-port │ │ └── download.xml │ │ ├── layout │ │ ├── action_bar.xml │ │ ├── album_list_item.xml │ │ ├── appwidget.xml │ │ ├── artist_list_item.xml │ │ ├── button_bar.xml │ │ ├── download_button_bar_flipper.xml │ │ ├── download_media_buttons.xml │ │ ├── download_media_controls.xml │ │ ├── download_overlay_buttons.xml │ │ ├── download_playlist.xml │ │ ├── download_slider.xml │ │ ├── download_song_info.xml │ │ ├── equalizer.xml │ │ ├── equalizer_bar.xml │ │ ├── help.xml │ │ ├── jukebox_volume.xml │ │ ├── lyrics.xml │ │ ├── main.xml │ │ ├── main_buttons.xml │ │ ├── notification.xml │ │ ├── notification_expanded.xml │ │ ├── playlist_list_item.xml │ │ ├── save_playlist.xml │ │ ├── search.xml │ │ ├── search_buttons.xml │ │ ├── select_album.xml │ │ ├── select_album_footer.xml │ │ ├── select_album_header.xml │ │ ├── select_artist.xml │ │ ├── select_artist_header.xml │ │ ├── select_playlist.xml │ │ ├── song_list_item.xml │ │ └── tab_progress.xml │ │ ├── menu │ │ ├── main.xml │ │ ├── nowplaying.xml │ │ ├── nowplaying_context.xml │ │ ├── select_album_context.xml │ │ ├── select_artist_context.xml │ │ └── select_song_context.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-v11 │ │ ├── colors.xml │ │ └── themes.xml │ │ ├── values-v14 │ │ └── dimens.xml │ │ ├── values-v16 │ │ └── themes.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── appwidget_info.xml │ │ ├── searchable.xml │ │ └── settings.xml │ └── subsonic.keystore ├── subsonic-assembly ├── pom.xml └── src │ └── main │ └── assembly │ ├── src.xml │ ├── standalone.xml │ └── war.xml ├── subsonic-backend ├── pom.xml └── src │ └── main │ ├── java │ └── net │ │ └── sourceforge │ │ └── subsonic │ │ └── backend │ │ ├── SubsonicThreadFactory.java │ │ ├── Util.java │ │ ├── controller │ │ ├── IPNController.java │ │ ├── MultiController.java │ │ ├── RedirectionController.java │ │ └── RedirectionManagementController.java │ │ ├── dao │ │ ├── AbstractDao.java │ │ ├── DaoHelper.java │ │ ├── PaymentDao.java │ │ ├── RedirectionDao.java │ │ ├── SubscriptionDao.java │ │ └── schema │ │ │ ├── Schema.java │ │ │ ├── Schema10.java │ │ │ ├── Schema20.java │ │ │ └── Schema30.java │ │ ├── domain │ │ ├── LicenseInfo.java │ │ ├── Payment.java │ │ ├── ProcessingStatus.java │ │ ├── Redirection.java │ │ ├── Subscription.java │ │ ├── SubscriptionNotification.java │ │ └── SubscriptionPayment.java │ │ └── service │ │ ├── EmailReminderGenerator.java │ │ ├── EmailSession.java │ │ ├── LicenseGenerator.java │ │ ├── LicenseService.java │ │ └── WhitelistGenerator.java │ ├── resources │ ├── log4j.properties │ └── net │ │ └── sourceforge │ │ └── subsonic │ │ └── backend │ │ └── service │ │ ├── license.html │ │ ├── license.txt │ │ ├── reminder.html │ │ └── reminder.txt │ └── webapp │ └── WEB-INF │ ├── applicationContext-backend.xml │ ├── jsp │ ├── backend │ │ ├── db.jsp │ │ ├── payment.jsp │ │ └── requestLicense.jsp │ ├── head.jsp │ └── include.jsp │ ├── subsonic-backend-servlet.xml │ └── web.xml ├── subsonic-blackberry ├── README.txt ├── build.xml └── local.properties ├── subsonic-booter ├── pom.xml └── src │ └── main │ ├── java │ └── net │ │ └── sourceforge │ │ └── subsonic │ │ └── booter │ │ ├── Main.java │ │ ├── agent │ │ ├── KakaduaUtil.java │ │ ├── SettingsPanel.java │ │ ├── StatusPanel.java │ │ ├── SubsonicAgent.java │ │ ├── SubsonicFrame.java │ │ ├── SubsonicListener.java │ │ └── TrayController.java │ │ ├── deployer │ │ ├── DeploymentStatus.java │ │ ├── SubsonicDeployer.java │ │ └── SubsonicDeployerService.java │ │ └── mac │ │ ├── StatusPanel.java │ │ ├── SubsonicController.java │ │ └── SubsonicFrame.java │ ├── resources │ ├── META-INF │ │ └── MANIFEST.MF │ ├── applicationContext-agent.xml │ ├── applicationContext-deployer.xml │ ├── applicationContext-mac.xml │ ├── images │ │ ├── subsonic-16.png │ │ ├── subsonic-21.png │ │ ├── subsonic-32.png │ │ ├── subsonic-512.png │ │ ├── subsonic-started-16.png │ │ └── subsonic-stopped-16.png │ ├── subsonic.keystore │ └── web-jetty.xml │ └── script │ ├── subsonic.bat │ └── subsonic.sh ├── subsonic-graphics ├── Advert-Regular.ttf ├── android-1.png ├── android-10.png ├── android-11.png ├── android-12.png ├── android-2.png ├── android-3.png ├── android-4.png ├── android-5.png ├── android-6.png ├── android-7.png ├── android-8.png ├── android-9.png ├── android-buttons │ └── media-buttons.svg ├── android-feature-graphic-290x140.png ├── android-feature-graphic.png ├── android-feature-graphic.xcf ├── android-market-promo.png ├── android-market-promo.xcf ├── blackberry-feature-graphic.png ├── blackberry-feature-graphic.xcf ├── car-stereo.jpg ├── chromecast │ ├── README.TXT │ ├── background.jpg │ ├── logo.png │ ├── subsonic.css │ └── watermark.png ├── default_cover.jpg ├── default_cover.png ├── default_cover_big.jpg ├── default_cover_big.png ├── desert-1024x768.jpg ├── desert.jpg ├── galaxy-nexus-1.png ├── galaxy-nexus-3.png ├── galaxy-nexus-6.png ├── galaxy-nexus-template.png ├── girl-in-grass.jpg ├── icon-114.png ├── icon-480.png ├── icon-512-noalpha.png ├── icon-512.png ├── nexus-one-1.png ├── nexus-one-11.png ├── nexus-one-12.png ├── nexus-one-2.png ├── nexus-one-3.png ├── nexus-one-4.png ├── nexus-one-5.png ├── nexus-one-6.png ├── nexus-one-7.png ├── nexus-one-8.png ├── nexus-one-9.png ├── nexus-one-template.png ├── skiing-1024x768.jpg ├── skiing.jpg ├── subsonic.svg └── video-browser.png ├── subsonic-installer-debian ├── pom.xml └── src │ ├── DEBIAN │ ├── conffiles │ ├── control │ ├── postinst │ ├── postrm │ ├── preinst │ └── prerm │ └── etc │ ├── default │ └── subsonic │ └── init.d │ └── subsonic ├── subsonic-installer-mac ├── pom.xml └── src │ ├── postinstall.sh │ ├── preinstall.sh │ ├── subsonic.icns │ ├── subsonic.pkgproj │ └── subsonic.png ├── subsonic-installer-rpm ├── pom.xml └── src │ ├── etc │ ├── init.d │ │ └── subsonic │ └── sysconfig │ │ └── subsonic │ └── subsonic.spec ├── subsonic-installer-windows ├── pom.xml └── src │ └── main │ ├── exe4j │ ├── booksonic-16.ico │ ├── booksonic-agent-elevated.exe.vmoptions │ ├── booksonic-agent-elevated.exe4j │ ├── booksonic-agent.exe.vmoptions │ ├── booksonic-agent.exe4j │ ├── booksonic-service.exe.vmoptions │ ├── booksonic-service.exe4j │ ├── subsonic-16.ico │ ├── subsonic-agent-elevated.exe.vmoptions │ ├── subsonic-agent-elevated.exe4j │ ├── subsonic-agent.exe.vmoptions │ ├── subsonic-agent.exe4j │ ├── subsonic-service.exe.vmoptions │ └── subsonic-service.exe4j │ └── nsis │ ├── jre-8u31-windows-i586-iftw.exe │ └── subsonic.nsi ├── subsonic-main ├── Getting Started.html ├── Getting Started.url ├── LICENSE.TXT ├── README.TXT ├── TODO.TXT ├── dreamplug.txt ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── net │ │ │ ├── kakadua │ │ │ │ └── KakaduaUtil.java │ │ │ └── sourceforge │ │ │ │ └── subsonic │ │ │ │ ├── Logger.java │ │ │ │ ├── ajax │ │ │ │ ├── AlbumInfo.java │ │ │ │ ├── ArtistInfo.java │ │ │ │ ├── ChatService.java │ │ │ │ ├── CoverArtInfo.java │ │ │ │ ├── CoverArtService.java │ │ │ │ ├── LyricsInfo.java │ │ │ │ ├── LyricsService.java │ │ │ │ ├── MultiService.java │ │ │ │ ├── NetworkStatus.java │ │ │ │ ├── NowPlayingInfo.java │ │ │ │ ├── NowPlayingService.java │ │ │ │ ├── PlayQueueInfo.java │ │ │ │ ├── PlayQueueService.java │ │ │ │ ├── PlaylistInfo.java │ │ │ │ ├── PlaylistService.java │ │ │ │ ├── ScanInfo.java │ │ │ │ ├── SimilarArtist.java │ │ │ │ ├── StarService.java │ │ │ │ ├── TagService.java │ │ │ │ ├── TopSong.java │ │ │ │ ├── TransferService.java │ │ │ │ ├── UploadInfo.java │ │ │ │ └── VideoConversionStatus.java │ │ │ │ ├── cache │ │ │ │ └── CacheFactory.java │ │ │ │ ├── command │ │ │ │ ├── AdvancedSettingsCommand.java │ │ │ │ ├── EnumHolder.java │ │ │ │ ├── GeneralSettingsCommand.java │ │ │ │ ├── MusicFolderSettingsCommand.java │ │ │ │ ├── NetworkSettingsCommand.java │ │ │ │ ├── PasswordSettingsCommand.java │ │ │ │ ├── PersonalSettingsCommand.java │ │ │ │ ├── PlayerSettingsCommand.java │ │ │ │ ├── PodcastSettingsCommand.java │ │ │ │ ├── PremiumSettingsCommand.java │ │ │ │ ├── SearchCommand.java │ │ │ │ └── UserSettingsCommand.java │ │ │ │ ├── controller │ │ │ │ ├── AbstractChartController.java │ │ │ │ ├── AdvancedSettingsController.java │ │ │ │ ├── AllmusicController.java │ │ │ │ ├── ArtistsController.java │ │ │ │ ├── AutoCoverDemo.java │ │ │ │ ├── AvatarController.java │ │ │ │ ├── AvatarUploadController.java │ │ │ │ ├── CaptionsController.java │ │ │ │ ├── ChangeCoverArtController.java │ │ │ │ ├── CoverArtController.java │ │ │ │ ├── DBController.java │ │ │ │ ├── DLNASettingsController.java │ │ │ │ ├── DownloadController.java │ │ │ │ ├── EditTagsController.java │ │ │ │ ├── ExternalPlayerController.java │ │ │ │ ├── GeneralSettingsController.java │ │ │ │ ├── HLSController.java │ │ │ │ ├── HelpController.java │ │ │ │ ├── HomeController.java │ │ │ │ ├── ImportPlaylistController.java │ │ │ │ ├── InternetRadioController.java │ │ │ │ ├── InternetRadioSettingsController.java │ │ │ │ ├── JAXBWriter.java │ │ │ │ ├── LeftController.java │ │ │ │ ├── LyricsController.java │ │ │ │ ├── M3UController.java │ │ │ │ ├── MainController.java │ │ │ │ ├── MoreController.java │ │ │ │ ├── MultiController.java │ │ │ │ ├── MusicFolderSettingsController.java │ │ │ │ ├── NetworkSettingsController.java │ │ │ │ ├── NowPlayingController.java │ │ │ │ ├── PasswordSettingsController.java │ │ │ │ ├── PersonalSettingsController.java │ │ │ │ ├── PlayQueueController.java │ │ │ │ ├── PlayerSettingsController.java │ │ │ │ ├── PlaylistController.java │ │ │ │ ├── PlaylistsController.java │ │ │ │ ├── PodcastChannelController.java │ │ │ │ ├── PodcastChannelsController.java │ │ │ │ ├── PodcastController.java │ │ │ │ ├── PodcastReceiverAdminController.java │ │ │ │ ├── PodcastSettingsController.java │ │ │ │ ├── PremiumSettingsController.java │ │ │ │ ├── ProxyController.java │ │ │ │ ├── RESTController.java │ │ │ │ ├── RandomPlayQueueController.java │ │ │ │ ├── ReloadFrame.java │ │ │ │ ├── RightController.java │ │ │ │ ├── SearchController.java │ │ │ │ ├── SetMusicFileInfoController.java │ │ │ │ ├── SetRatingController.java │ │ │ │ ├── SettingsController.java │ │ │ │ ├── ShareManagementController.java │ │ │ │ ├── ShareSettingsController.java │ │ │ │ ├── SonosSettingsController.java │ │ │ │ ├── StarredController.java │ │ │ │ ├── StatusChartController.java │ │ │ │ ├── StatusController.java │ │ │ │ ├── StreamController.java │ │ │ │ ├── TopController.java │ │ │ │ ├── TranscodingSettingsController.java │ │ │ │ ├── UploadController.java │ │ │ │ ├── UserChartController.java │ │ │ │ ├── UserSettingsController.java │ │ │ │ ├── VideoConverterController.java │ │ │ │ ├── VideoPlayerController.java │ │ │ │ └── WapController.java │ │ │ │ ├── dao │ │ │ │ ├── AbstractDao.java │ │ │ │ ├── AlbumDao.java │ │ │ │ ├── ArtistDao.java │ │ │ │ ├── AvatarDao.java │ │ │ │ ├── BookmarkDao.java │ │ │ │ ├── DaoHelper.java │ │ │ │ ├── DaoHelperFactory.java │ │ │ │ ├── HsqlDaoHelper.java │ │ │ │ ├── InternetRadioDao.java │ │ │ │ ├── MediaFileDao.java │ │ │ │ ├── MusicFolderDao.java │ │ │ │ ├── PlayQueueDao.java │ │ │ │ ├── PlayerDao.java │ │ │ │ ├── PlaylistDao.java │ │ │ │ ├── PodcastDao.java │ │ │ │ ├── RatingDao.java │ │ │ │ ├── ShareDao.java │ │ │ │ ├── TranscodingDao.java │ │ │ │ ├── UserDao.java │ │ │ │ ├── VideoConversionDao.java │ │ │ │ └── schema │ │ │ │ │ ├── Schema.java │ │ │ │ │ └── hsql │ │ │ │ │ ├── Schema25.java │ │ │ │ │ ├── Schema26.java │ │ │ │ │ ├── Schema27.java │ │ │ │ │ ├── Schema28.java │ │ │ │ │ ├── Schema29.java │ │ │ │ │ ├── Schema30.java │ │ │ │ │ ├── Schema31.java │ │ │ │ │ ├── Schema32.java │ │ │ │ │ ├── Schema33.java │ │ │ │ │ ├── Schema34.java │ │ │ │ │ ├── Schema35.java │ │ │ │ │ ├── Schema36.java │ │ │ │ │ ├── Schema37.java │ │ │ │ │ ├── Schema38.java │ │ │ │ │ ├── Schema40.java │ │ │ │ │ ├── Schema43.java │ │ │ │ │ ├── Schema45.java │ │ │ │ │ ├── Schema46.java │ │ │ │ │ ├── Schema47.java │ │ │ │ │ ├── Schema49.java │ │ │ │ │ ├── Schema50.java │ │ │ │ │ ├── Schema51.java │ │ │ │ │ ├── Schema52.java │ │ │ │ │ ├── Schema53.java │ │ │ │ │ └── Schema60.java │ │ │ │ ├── domain │ │ │ │ ├── Album.java │ │ │ │ ├── AlbumListType.java │ │ │ │ ├── AlbumNotes.java │ │ │ │ ├── Artist.java │ │ │ │ ├── ArtistBio.java │ │ │ │ ├── Avatar.java │ │ │ │ ├── AvatarScheme.java │ │ │ │ ├── Bookmark.java │ │ │ │ ├── CacheElement.java │ │ │ │ ├── CoverArtScheme.java │ │ │ │ ├── Genre.java │ │ │ │ ├── Genres.java │ │ │ │ ├── InternetRadio.java │ │ │ │ ├── LastFmCoverArt.java │ │ │ │ ├── LicenseInfo.java │ │ │ │ ├── MediaFile.java │ │ │ │ ├── MediaFileComparator.java │ │ │ │ ├── MediaLibraryStatistics.java │ │ │ │ ├── MusicFolder.java │ │ │ │ ├── MusicFolderContent.java │ │ │ │ ├── MusicIndex.java │ │ │ │ ├── PlayQueue.java │ │ │ │ ├── PlayStatus.java │ │ │ │ ├── Player.java │ │ │ │ ├── PlayerTechnology.java │ │ │ │ ├── Playlist.java │ │ │ │ ├── PodcastChannel.java │ │ │ │ ├── PodcastEpisode.java │ │ │ │ ├── PodcastStatus.java │ │ │ │ ├── RandomSearchCriteria.java │ │ │ │ ├── SavedPlayQueue.java │ │ │ │ ├── SearchCriteria.java │ │ │ │ ├── SearchResult.java │ │ │ │ ├── Share.java │ │ │ │ ├── Theme.java │ │ │ │ ├── TranscodeScheme.java │ │ │ │ ├── Transcoding.java │ │ │ │ ├── TransferStatus.java │ │ │ │ ├── UrlRedirectType.java │ │ │ │ ├── User.java │ │ │ │ ├── UserSettings.java │ │ │ │ ├── Version.java │ │ │ │ ├── VideoConversion.java │ │ │ │ └── VideoTranscodingSettings.java │ │ │ │ ├── filter │ │ │ │ ├── BootstrapVerificationFilter.java │ │ │ │ ├── ParameterDecodingFilter.java │ │ │ │ ├── RESTFilter.java │ │ │ │ ├── RequestEncodingFilter.java │ │ │ │ └── ResponseHeaderFilter.java │ │ │ │ ├── i18n │ │ │ │ └── SubsonicLocaleResolver.java │ │ │ │ ├── io │ │ │ │ ├── InputStreamReaderThread.java │ │ │ │ ├── PlayQueueInputStream.java │ │ │ │ ├── ShoutCastOutputStream.java │ │ │ │ └── TranscodeInputStream.java │ │ │ │ ├── ldap │ │ │ │ ├── SubsonicLdapBindAuthenticator.java │ │ │ │ └── UserDetailsServiceBasedAuthoritiesPopulator.java │ │ │ │ ├── security │ │ │ │ ├── LoginFailureLogger.java │ │ │ │ ├── RESTRequestParameterProcessingFilter.java │ │ │ │ └── SubsonicApplicationEventListener.java │ │ │ │ ├── service │ │ │ │ ├── AdService.java │ │ │ │ ├── AudioScrobblerService.java │ │ │ │ ├── ITunesParser.java │ │ │ │ ├── JukeboxService.java │ │ │ │ ├── LastFmCache.java │ │ │ │ ├── LastFmExpirationPolicy.java │ │ │ │ ├── LastFmService.java │ │ │ │ ├── MediaFileService.java │ │ │ │ ├── MediaScannerService.java │ │ │ │ ├── MusicIndexService.java │ │ │ │ ├── NetworkService.java │ │ │ │ ├── PlayerService.java │ │ │ │ ├── PlaylistService.java │ │ │ │ ├── PodcastService.java │ │ │ │ ├── RatingService.java │ │ │ │ ├── SearchService.java │ │ │ │ ├── SecurityService.java │ │ │ │ ├── ServiceLocator.java │ │ │ │ ├── SettingsService.java │ │ │ │ ├── ShareService.java │ │ │ │ ├── SonosService.java │ │ │ │ ├── StatusService.java │ │ │ │ ├── TranscodingService.java │ │ │ │ ├── UPnPService.java │ │ │ │ ├── VersionService.java │ │ │ │ ├── VideoConversionService.java │ │ │ │ ├── captions │ │ │ │ │ └── SrtToVtt.java │ │ │ │ ├── jukebox │ │ │ │ │ ├── AudioPlayer.java │ │ │ │ │ └── PlayerTest.java │ │ │ │ ├── metadata │ │ │ │ │ ├── DefaultMetaDataParser.java │ │ │ │ │ ├── FFmpegParser.java │ │ │ │ │ ├── JaudiotaggerParser.java │ │ │ │ │ ├── MetaData.java │ │ │ │ │ ├── MetaDataParser.java │ │ │ │ │ ├── MetaDataParserFactory.java │ │ │ │ │ └── Track.java │ │ │ │ ├── sonos │ │ │ │ │ ├── AlbumList.java │ │ │ │ │ ├── SonosFaultInterceptor.java │ │ │ │ │ ├── SonosHelper.java │ │ │ │ │ ├── SonosServiceRegistration.java │ │ │ │ │ └── SonosSoapFault.java │ │ │ │ └── upnp │ │ │ │ │ ├── ApacheUpnpServiceConfiguration.java │ │ │ │ │ ├── ClingRouter.java │ │ │ │ │ ├── FolderBasedContentDirectory.java │ │ │ │ │ ├── MSMediaReceiverRegistrarService.java │ │ │ │ │ ├── NATPMPRouter.java │ │ │ │ │ ├── Router.java │ │ │ │ │ └── SubsonicContentDirectory.java │ │ │ │ ├── taglib │ │ │ │ ├── EscapeJavaScriptTag.java │ │ │ │ ├── FormatBytesTag.java │ │ │ │ ├── ParamTag.java │ │ │ │ ├── UrlTag.java │ │ │ │ └── WikiTag.java │ │ │ │ ├── theme │ │ │ │ ├── SubsonicThemeResolver.java │ │ │ │ └── SubsonicThemeSource.java │ │ │ │ ├── upload │ │ │ │ ├── MonitoredDiskFileItem.java │ │ │ │ ├── MonitoredDiskFileItemFactory.java │ │ │ │ ├── MonitoredOutputStream.java │ │ │ │ └── UploadListener.java │ │ │ │ ├── util │ │ │ │ ├── BoundedList.java │ │ │ │ ├── FileUtil.java │ │ │ │ ├── HttpRange.java │ │ │ │ ├── KakaduaUtil.java │ │ │ │ ├── Pair.java │ │ │ │ ├── StringUtil.java │ │ │ │ ├── URLBuilder.java │ │ │ │ └── Util.java │ │ │ │ └── validator │ │ │ │ ├── PasswordSettingsValidator.java │ │ │ │ ├── PremiumSettingsValidator.java │ │ │ │ └── UserSettingsValidator.java │ │ └── org │ │ │ └── json │ │ │ ├── CDL.java │ │ │ ├── Cookie.java │ │ │ ├── CookieList.java │ │ │ ├── HTTP.java │ │ │ ├── HTTPTokener.java │ │ │ ├── JSONArray.java │ │ │ ├── JSONException.java │ │ │ ├── JSONML.java │ │ │ ├── JSONObject.java │ │ │ ├── JSONString.java │ │ │ ├── JSONStringer.java │ │ │ ├── JSONTokener.java │ │ │ ├── JSONWriter.java │ │ │ ├── XML.java │ │ │ └── XMLTokener.java │ ├── resources │ │ ├── ehcache.xml │ │ ├── log4j.properties │ │ └── net │ │ │ └── sourceforge │ │ │ └── subsonic │ │ │ ├── controller │ │ │ └── default_cover.jpg │ │ │ ├── dao │ │ │ └── schema │ │ │ │ ├── All-Caps.png │ │ │ │ ├── Army-Officer.png │ │ │ │ ├── Beatnik.png │ │ │ │ ├── Clown.png │ │ │ │ ├── Commie-Pinko.png │ │ │ │ ├── Cool.png │ │ │ │ ├── Drum.png │ │ │ │ ├── Engineer.png │ │ │ │ ├── Fire-Guitar.png │ │ │ │ ├── Footballer.png │ │ │ │ ├── Formal.png │ │ │ │ ├── Forum-Flirt.png │ │ │ │ ├── Gamer.png │ │ │ │ ├── Green-Boy.png │ │ │ │ ├── Headphones.png │ │ │ │ ├── Hopelessly-Addicted.png │ │ │ │ ├── Jekyll-And-Hyde.png │ │ │ │ ├── Joker.png │ │ │ │ ├── Laugh.png │ │ │ │ ├── Linux-Zealot.png │ │ │ │ ├── Lurker.png │ │ │ │ ├── Mac-Zealot.png │ │ │ │ ├── Mic.png │ │ │ │ ├── Moderator.png │ │ │ │ ├── Newbie.png │ │ │ │ ├── No-Dissent.png │ │ │ │ ├── Performer.png │ │ │ │ ├── Push-My-Button.png │ │ │ │ ├── Ray-Of-Sunshine.png │ │ │ │ ├── Red-Hot-Chili-Peppers-1.png │ │ │ │ ├── Red-Hot-Chili-Peppers-2.png │ │ │ │ ├── Red-Hot-Chili-Peppers-3.png │ │ │ │ ├── Red-Hot-Chili-Peppers-4.png │ │ │ │ ├── Ringmaster.png │ │ │ │ ├── Rumor-Junkie.png │ │ │ │ ├── Sozzled-Surfer.png │ │ │ │ ├── Statistician.png │ │ │ │ ├── Study.png │ │ │ │ ├── Tech-Support.png │ │ │ │ ├── The-Guru.png │ │ │ │ ├── The-Referee.png │ │ │ │ ├── Troll.png │ │ │ │ ├── Turntable.png │ │ │ │ ├── Uptight.png │ │ │ │ ├── Vinyl.png │ │ │ │ └── Windows-Zealot.png │ │ │ ├── i18n │ │ │ ├── ResourceBundle_bg.properties │ │ │ ├── ResourceBundle_ca.properties │ │ │ ├── ResourceBundle_cs.properties │ │ │ ├── ResourceBundle_da.properties │ │ │ ├── ResourceBundle_de.properties │ │ │ ├── ResourceBundle_el.properties │ │ │ ├── ResourceBundle_en.properties │ │ │ ├── ResourceBundle_en_GB.properties │ │ │ ├── ResourceBundle_es.properties │ │ │ ├── ResourceBundle_et.properties │ │ │ ├── ResourceBundle_fi.properties │ │ │ ├── ResourceBundle_fr.properties │ │ │ ├── ResourceBundle_is.properties │ │ │ ├── ResourceBundle_it.properties │ │ │ ├── ResourceBundle_ja_JP.properties │ │ │ ├── ResourceBundle_ko.properties │ │ │ ├── ResourceBundle_mk.properties │ │ │ ├── ResourceBundle_nl.properties │ │ │ ├── ResourceBundle_nn.properties │ │ │ ├── ResourceBundle_no.properties │ │ │ ├── ResourceBundle_pl.properties │ │ │ ├── ResourceBundle_pt.properties │ │ │ ├── ResourceBundle_ru.properties │ │ │ ├── ResourceBundle_sl.properties │ │ │ ├── ResourceBundle_sv.properties │ │ │ ├── ResourceBundle_zh_CN.properties │ │ │ ├── ResourceBundle_zh_TW.properties │ │ │ └── locales.txt │ │ │ ├── service │ │ │ ├── sonos │ │ │ │ ├── star-selected-52x52.png │ │ │ │ ├── star-selected-66x66.png │ │ │ │ ├── star-selected-80x80.png │ │ │ │ ├── star-unselected-52x52.png │ │ │ │ ├── star-unselected-66x66.png │ │ │ │ └── star-unselected-80x80.png │ │ │ └── subsonic-512.png │ │ │ └── theme │ │ │ ├── 2010.properties │ │ │ ├── barents.properties │ │ │ ├── black.properties │ │ │ ├── buuftheme.properties │ │ │ ├── coolandclean.properties │ │ │ ├── default.properties │ │ │ ├── default_dark.properties │ │ │ ├── default_light.properties │ │ │ ├── denim.properties │ │ │ ├── groove.properties │ │ │ ├── groove_simple.properties │ │ │ ├── hd1080.properties │ │ │ ├── hd720.properties │ │ │ ├── hd768.properties │ │ │ ├── hicon.properties │ │ │ ├── hiconi.properties │ │ │ ├── hitech.properties │ │ │ ├── midnight.properties │ │ │ ├── midnightfun.properties │ │ │ ├── monochrome.properties │ │ │ ├── monochrome_black.properties │ │ │ ├── pinkpanther.properties │ │ │ ├── ripserver.properties │ │ │ ├── sandstorm.properties │ │ │ ├── simplify.properties │ │ │ ├── slick.properties │ │ │ ├── sonic.properties │ │ │ ├── sonic_blue.properties │ │ │ ├── sonic_white.properties │ │ │ ├── subStandard.properties │ │ │ └── themes.txt │ └── webapp │ │ ├── WEB-INF │ │ ├── applicationContext-cache.xml │ │ ├── applicationContext-security.xml │ │ ├── applicationContext-service.xml │ │ ├── applicationContext-sonos.xml │ │ ├── dwr.xml │ │ ├── jsp │ │ │ ├── accessDenied.jsp │ │ │ ├── advancedSettings.jsp │ │ │ ├── albumMain.jsp │ │ │ ├── allmusic.jsp │ │ │ ├── artistMain.jsp │ │ │ ├── artists.jsp │ │ │ ├── avatarUploadResult.jsp │ │ │ ├── changeCoverArt.jsp │ │ │ ├── coverArt.jsp │ │ │ ├── createShare.jsp │ │ │ ├── db.jsp │ │ │ ├── dlnaSettings.jsp │ │ │ ├── editTags.jsp │ │ │ ├── externalPlayer.jsp │ │ │ ├── generalSettings.jsp │ │ │ ├── gettingStarted.jsp │ │ │ ├── head.jsp │ │ │ ├── help.jsp │ │ │ ├── helpToolTip.jsp │ │ │ ├── home.jsp │ │ │ ├── homePager.jsp │ │ │ ├── importPlaylist.jsp │ │ │ ├── include.jsp │ │ │ ├── index.jsp │ │ │ ├── internetRadio.jsp │ │ │ ├── internetRadioSettings.jsp │ │ │ ├── jquery.jsp │ │ │ ├── left.jsp │ │ │ ├── licenseNotice.jsp │ │ │ ├── login.jsp │ │ │ ├── lyrics.jsp │ │ │ ├── more.jsp │ │ │ ├── musicFolderSettings.jsp │ │ │ ├── networkSettings.jsp │ │ │ ├── notFound.jsp │ │ │ ├── passwordSettings.jsp │ │ │ ├── personalSettings.jsp │ │ │ ├── playButtons.jsp │ │ │ ├── playQueue.jsp │ │ │ ├── playQueueCast.jsp │ │ │ ├── playerSettings.jsp │ │ │ ├── playlist.jsp │ │ │ ├── playlists.jsp │ │ │ ├── podcast.jsp │ │ │ ├── podcastChannel.jsp │ │ │ ├── podcastChannels.jsp │ │ │ ├── podcastSettings.jsp │ │ │ ├── premiumSettings.jsp │ │ │ ├── rating.jsp │ │ │ ├── recover.jsp │ │ │ ├── reload.jsp │ │ │ ├── right.jsp │ │ │ ├── search.jsp │ │ │ ├── settingsHeader.jsp │ │ │ ├── shareSettings.jsp │ │ │ ├── sonosSettings.jsp │ │ │ ├── starred.jsp │ │ │ ├── status.jsp │ │ │ ├── test.jsp │ │ │ ├── top.jsp │ │ │ ├── transcodingSettings.jsp │ │ │ ├── upload.jsp │ │ │ ├── userSettings.jsp │ │ │ ├── videoConverter.jsp │ │ │ ├── videoMain.jsp │ │ │ ├── videoPlayer.jsp │ │ │ ├── videoPlayerCast.jsp │ │ │ ├── viewSelector.jsp │ │ │ └── wap │ │ │ │ ├── browse.jsp │ │ │ │ ├── head.jsp │ │ │ │ ├── index.jsp │ │ │ │ ├── loadPlaylist.jsp │ │ │ │ ├── playlist.jsp │ │ │ │ ├── search.jsp │ │ │ │ ├── searchResult.jsp │ │ │ │ └── settings.jsp │ │ ├── sub.tld │ │ ├── subsonic-servlet.xml │ │ └── web.xml │ │ ├── ad │ │ └── omakasa.html │ │ ├── crossdomain.xml │ │ ├── error.jsp │ │ ├── flash │ │ ├── jw-player-5.10.swf │ │ ├── jw-player-subsonic-skin.zip │ │ └── whotube.zip │ │ ├── icons │ │ ├── buuftheme │ │ │ ├── add.png │ │ │ ├── android.png │ │ │ ├── back.png │ │ │ ├── background_main.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── donate_small.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── gpl.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── home_hover.png │ │ │ ├── list_heading.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── subair.png │ │ │ ├── up.png │ │ │ ├── upload.png │ │ │ └── wap.png │ │ ├── cast │ │ │ ├── cast_icon_active.png │ │ │ ├── cast_icon_error.png │ │ │ ├── cast_icon_idle.png │ │ │ └── cast_icon_warning.png │ │ ├── coolandclean │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── background.png │ │ │ ├── background_main.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── home_hover.png │ │ │ ├── list_heading.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── starred.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── default_dark │ │ │ ├── add.png │ │ │ ├── add_next.png │ │ │ ├── android.png │ │ │ ├── apps.png │ │ │ ├── back.png │ │ │ ├── cast_active.png │ │ │ ├── cast_idle.png │ │ │ ├── cast_pause.png │ │ │ ├── cast_play.png │ │ │ ├── current.png │ │ │ ├── donate.png │ │ │ ├── donate_small.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── gpl.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── html5.png │ │ │ ├── jamstash.png │ │ │ ├── log.png │ │ │ ├── more.png │ │ │ ├── mute.png │ │ │ ├── now_playing.png │ │ │ ├── play.png │ │ │ ├── play_overlay.png │ │ │ ├── playlist.png │ │ │ ├── podcast.png │ │ │ ├── podcast_large.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── ratingHalf.png │ │ │ ├── ratingOff.png │ │ │ ├── ratingOn.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── share.png │ │ │ ├── share_facebook.png │ │ │ ├── share_googleplus.png │ │ │ ├── share_small.png │ │ │ ├── share_twitter.png │ │ │ ├── shuffle.png │ │ │ ├── spinner.gif │ │ │ ├── starred.png │ │ │ ├── status.png │ │ │ ├── status_small.png │ │ │ ├── subsonic_logo.png │ │ │ ├── up.png │ │ │ ├── upload.png │ │ │ ├── view_as_grid.png │ │ │ ├── view_as_list.png │ │ │ └── volume.png │ │ ├── default_light │ │ │ ├── add.png │ │ │ ├── add_next.png │ │ │ ├── android.png │ │ │ ├── apps.png │ │ │ ├── back.png │ │ │ ├── back_light.png │ │ │ ├── cast_active.png │ │ │ ├── cast_idle.png │ │ │ ├── cast_pause.png │ │ │ ├── cast_play.png │ │ │ ├── current.png │ │ │ ├── donate.png │ │ │ ├── donate_small.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── forward_light.png │ │ │ ├── gpl.png │ │ │ ├── help.png │ │ │ ├── help_light.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── home_light.png │ │ │ ├── html5.png │ │ │ ├── jamstash.png │ │ │ ├── log.png │ │ │ ├── more.png │ │ │ ├── more_light.png │ │ │ ├── mute.png │ │ │ ├── now_playing.png │ │ │ ├── now_playing_light.png │ │ │ ├── play.png │ │ │ ├── play_light.png │ │ │ ├── play_overlay.png │ │ │ ├── playlist.png │ │ │ ├── playlist_light.png │ │ │ ├── podcast.png │ │ │ ├── podcast_large.png │ │ │ ├── podcast_large_light.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── ratingHalf.png │ │ │ ├── ratingOff.png │ │ │ ├── ratingOn.png │ │ │ ├── remove.gif │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── search_light.png │ │ │ ├── settings.png │ │ │ ├── settings_light.png │ │ │ ├── share.png │ │ │ ├── share_facebook.png │ │ │ ├── share_googleplus.png │ │ │ ├── share_small.png │ │ │ ├── share_twitter.png │ │ │ ├── shuffle.png │ │ │ ├── spinner.gif │ │ │ ├── star_off.png │ │ │ ├── starred.png │ │ │ ├── starred_light.png │ │ │ ├── status.png │ │ │ ├── status_small.png │ │ │ ├── subsonic_logo.png │ │ │ ├── subsonic_logo_light.png │ │ │ ├── up.png │ │ │ ├── upload.png │ │ │ ├── view_as_grid.png │ │ │ ├── view_as_grid_light.png │ │ │ ├── view_as_list.png │ │ │ ├── view_as_list_light.png │ │ │ └── volume.png │ │ ├── denim │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── favicon.png │ │ ├── groove │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── background_main.png │ │ │ ├── background_main_blank.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── hd │ │ │ └── background.png │ │ ├── hicon │ │ │ ├── favicon.ico │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── podcast_large.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ └── subsonic.png │ │ ├── hiconi │ │ │ ├── Untitled-1.ico │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── podcast_large.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ └── subsonic.png │ │ ├── hitech │ │ │ ├── bg.jpg │ │ │ ├── bg2.jpg │ │ │ ├── favicon.ico │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── podcast_large.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ └── subsonic.png │ │ ├── lastfm.gif │ │ ├── midnightfun │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── midnightfun_Now_Playing.png │ │ │ ├── midnightfun_add.png │ │ │ ├── midnightfun_back.png │ │ │ ├── midnightfun_background.gif │ │ │ ├── midnightfun_clear_Rating.png │ │ │ ├── midnightfun_donate.png │ │ │ ├── midnightfun_down.png │ │ │ ├── midnightfun_download.png │ │ │ ├── midnightfun_form_controls.jpg │ │ │ ├── midnightfun_form_controls_hover.jpg │ │ │ ├── midnightfun_forward.png │ │ │ ├── midnightfun_help.png │ │ │ ├── midnightfun_help_small.png │ │ │ ├── midnightfun_home.png │ │ │ ├── midnightfun_home_hover.jpg │ │ │ ├── midnightfun_log.png │ │ │ ├── midnightfun_logo.png │ │ │ ├── midnightfun_logo_favicon.ico │ │ │ ├── midnightfun_more.png │ │ │ ├── midnightfun_paypal.gif │ │ │ ├── midnightfun_phone.png │ │ │ ├── midnightfun_play.png │ │ │ ├── midnightfun_playing.png │ │ │ ├── midnightfun_podcast.png │ │ │ ├── midnightfun_podcast_small.png │ │ │ ├── midnightfun_random.png │ │ │ ├── midnightfun_remove.png │ │ │ ├── midnightfun_search.png │ │ │ ├── midnightfun_settings.png │ │ │ ├── midnightfun_status.png │ │ │ ├── midnightfun_table.jpg │ │ │ ├── midnightfun_text_back.jpg │ │ │ ├── midnightfun_up.png │ │ │ ├── midnightfun_upload.png │ │ │ ├── progress.png │ │ │ ├── ratingHalf.png │ │ │ ├── ratingOff.png │ │ │ └── ratingOn.png │ │ ├── monochrome │ │ │ └── subdot.png │ │ ├── pinkpanther │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── ripserver │ │ │ ├── add.gif │ │ │ ├── back.gif │ │ │ ├── background.png │ │ │ ├── clearRating.png │ │ │ ├── current.gif │ │ │ ├── donate.png │ │ │ ├── down.gif │ │ │ ├── download.gif │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.gif │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── play.gif │ │ │ ├── podcast.png │ │ │ ├── podcast_large.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── ratingHalf.png │ │ │ ├── ratingOff.png │ │ │ ├── ratingOn.png │ │ │ ├── remove.gif │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── subsonic_black.png │ │ │ ├── subsonic_white.png │ │ │ ├── up.gif │ │ │ ├── upload.gif │ │ │ └── wap.png │ │ ├── simplify │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── slick │ │ │ ├── favicon.ico │ │ │ ├── help.png │ │ │ ├── home.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── podcast_large.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── subsonic.png │ │ │ └── top_bg.jpg │ │ ├── sonic │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── sonic_blue │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── sonic_white │ │ │ ├── add.png │ │ │ ├── back.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── status.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ ├── subStandard │ │ │ ├── add.png │ │ │ ├── android.png │ │ │ ├── back.png │ │ │ ├── background_main.png │ │ │ ├── clear_rating.png │ │ │ ├── donate.png │ │ │ ├── donate_small.png │ │ │ ├── down.png │ │ │ ├── download.png │ │ │ ├── error.png │ │ │ ├── facebook.png │ │ │ ├── favicon.ico │ │ │ ├── forward.png │ │ │ ├── googleplus.png │ │ │ ├── help.png │ │ │ ├── help_small.png │ │ │ ├── home.png │ │ │ ├── log.png │ │ │ ├── logo.png │ │ │ ├── more.png │ │ │ ├── now_playing.png │ │ │ ├── paypal.gif │ │ │ ├── phone.png │ │ │ ├── play.png │ │ │ ├── playing.png │ │ │ ├── podcast.png │ │ │ ├── podcast_small.png │ │ │ ├── progress.png │ │ │ ├── random.png │ │ │ ├── rating_half.png │ │ │ ├── rating_off.png │ │ │ ├── rating_on.png │ │ │ ├── remove.png │ │ │ ├── search.png │ │ │ ├── settings.png │ │ │ ├── starred.png │ │ │ ├── status.png │ │ │ ├── twitter.png │ │ │ ├── up.png │ │ │ └── upload.png │ │ └── video │ │ │ ├── audio_off.png │ │ │ ├── audio_on.png │ │ │ ├── cast_active.png │ │ │ ├── cast_idle.png │ │ │ ├── download.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ └── share.png │ │ ├── index.html │ │ ├── index.jsp │ │ ├── script │ │ ├── AC_OETags.js │ │ ├── builder.js │ │ ├── cast_sender-v1.js │ │ ├── controls.js │ │ ├── effects.js │ │ ├── fancyzoom │ │ │ ├── FancyZoom.js │ │ │ ├── FancyZoomHTML.js │ │ │ └── images │ │ │ │ ├── closebox.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── zoom-caption-fill.png │ │ │ │ ├── zoom-caption-l.png │ │ │ │ ├── zoom-caption-r.png │ │ │ │ ├── zoom-shadow1.png │ │ │ │ ├── zoom-shadow2.png │ │ │ │ ├── zoom-shadow3.png │ │ │ │ ├── zoom-shadow4.png │ │ │ │ ├── zoom-shadow5.png │ │ │ │ ├── zoom-shadow6.png │ │ │ │ ├── zoom-shadow7.png │ │ │ │ ├── zoom-shadow8.png │ │ │ │ ├── zoom-spin-1.png │ │ │ │ ├── zoom-spin-10.png │ │ │ │ ├── zoom-spin-11.png │ │ │ │ ├── zoom-spin-12.png │ │ │ │ ├── zoom-spin-2.png │ │ │ │ ├── zoom-spin-3.png │ │ │ │ ├── zoom-spin-4.png │ │ │ │ ├── zoom-spin-5.png │ │ │ │ ├── zoom-spin-6.png │ │ │ │ ├── zoom-spin-7.png │ │ │ │ ├── zoom-spin-8.png │ │ │ │ └── zoom-spin-9.png │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.11.1.min.js │ │ ├── jquery.contextMenu.js │ │ ├── jquery.toastmessage │ │ │ ├── css │ │ │ │ └── jquery.toastmessage.css │ │ │ ├── images │ │ │ │ ├── close.gif │ │ │ │ ├── error.png │ │ │ │ ├── notice.png │ │ │ │ ├── success.png │ │ │ │ └── warning.png │ │ │ └── jquery.toastmessage.js │ │ ├── jwplayer-5.10.min.js │ │ ├── jwplayer-7.2.4 │ │ │ ├── jwplayer.flash.swf │ │ │ ├── jwplayer.js │ │ │ ├── polyfills.base64.js │ │ │ ├── polyfills.promise.js │ │ │ ├── provider.cast.js │ │ │ ├── provider.shaka.js │ │ │ ├── provider.youtube.js │ │ │ └── skins │ │ │ │ ├── beelden.css │ │ │ │ ├── bekle.css │ │ │ │ ├── five.css │ │ │ │ ├── glow.css │ │ │ │ ├── roundster.css │ │ │ │ ├── seven.css │ │ │ │ ├── six.css │ │ │ │ ├── stormtrooper.css │ │ │ │ └── vapor.css │ │ ├── mousetrap-1.5.3.js │ │ ├── prototype.js │ │ ├── scripts-2.0.js │ │ ├── swfobject.js │ │ ├── tip_balloon.js │ │ ├── tip_balloon │ │ │ ├── b.gif │ │ │ ├── background.gif │ │ │ ├── l.gif │ │ │ ├── lb.gif │ │ │ ├── lt.gif │ │ │ ├── r.gif │ │ │ ├── rb.gif │ │ │ ├── rt.gif │ │ │ ├── stemb.gif │ │ │ ├── stemt.gif │ │ │ └── t.gif │ │ └── wz_tooltip.js │ │ ├── sonos │ │ ├── presentationMap.xml │ │ ├── presentationMap.xsd │ │ └── strings.xml │ │ └── style │ │ ├── barents.css │ │ ├── base.css │ │ ├── black.css │ │ ├── buuftheme.css │ │ ├── coolandclean.css │ │ ├── default.css │ │ ├── denim.css │ │ ├── font-awesome-4.5.0 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── groove.css │ │ ├── groove_simple.css │ │ ├── hd.css │ │ ├── hd1080.css │ │ ├── hd720.css │ │ ├── hd768.css │ │ ├── hicon.css │ │ ├── hiconi.css │ │ ├── hitech.css │ │ ├── jquery.contextMenu.css │ │ ├── midnight.css │ │ ├── midnightfun.css │ │ ├── monochrome.css │ │ ├── monochrome_black.css │ │ ├── pinkpanther.css │ │ ├── ripserver.css │ │ ├── sandstorm.css │ │ ├── simplify.css │ │ ├── slick.css │ │ ├── smoothness │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui-1.8.18.custom.css │ │ ├── sonic.css │ │ ├── sonic_blue.css │ │ ├── sonic_white.css │ │ ├── subStandard.css │ │ └── videoPlayer.css │ └── test │ └── java │ └── net │ └── sourceforge │ └── subsonic │ ├── MissingTranslations.java │ ├── controller │ ├── HLSControllerTestCase.java │ └── StreamControllerTestCase.java │ ├── dao │ ├── DaoTestCaseBase.java │ ├── InternetRadioDaoTestCase.java │ ├── MusicFolderDaoTestCase.java │ ├── PlayerDaoTestCase.java │ ├── PodcastDaoTestCase.java │ ├── TranscodingDaoTestCase.java │ └── UserDaoTestCase.java │ ├── domain │ ├── CacheElementTestCase.java │ ├── MediaFileComparatorTestCase.java │ ├── PlayQueueTestCase.java │ ├── SortableArtistTestCase.java │ ├── TranscodeSchemeTestCase.java │ └── VersionTestCase.java │ ├── service │ ├── MusicIndexServiceTestCase.java │ ├── SecurityServiceTestCase.java │ ├── SettingsServiceTestCase.java │ ├── SonosServiceTest.java │ ├── StatusServiceTestCase.java │ ├── captions │ │ └── SrtToVttTestCase.java │ └── metadata │ │ ├── MediaFileTestCase.java │ │ └── MetaDataParserTestCase.java │ └── util │ ├── HttpRangeTestCase.java │ └── StringUtilTestCase.java ├── subsonic-rest-api ├── pom.xml └── src │ └── main │ └── resources │ ├── org │ └── subsonic │ │ └── restapi │ │ └── jaxb.properties │ └── subsonic-rest-api.xsd ├── subsonic-site ├── pom.xml └── src │ └── main │ └── webapp │ ├── WEB-INF │ └── web.xml │ ├── android-donation.jsp │ ├── api-addChatMessage.jsp │ ├── api-changePassword.jsp │ ├── api-createBookmark.jsp │ ├── api-createPlaylist.jsp │ ├── api-createPodcastChannel.jsp │ ├── api-createShare.jsp │ ├── api-createUser.jsp │ ├── api-deleteBookmark.jsp │ ├── api-deletePlaylist.jsp │ ├── api-deletePodcastChannel.jsp │ ├── api-deletePodcastEpisode.jsp │ ├── api-deleteShare.jsp │ ├── api-deleteUser.jsp │ ├── api-download.jsp │ ├── api-downloadPodcastEpisode.jsp │ ├── api-getAlbum.jsp │ ├── api-getAlbumInfo.jsp │ ├── api-getAlbumInfo2.jsp │ ├── api-getAlbumList.jsp │ ├── api-getAlbumList2.jsp │ ├── api-getArtist.jsp │ ├── api-getArtistInfo.jsp │ ├── api-getArtistInfo2.jsp │ ├── api-getArtists.jsp │ ├── api-getAvatar.jsp │ ├── api-getBookmarks.jsp │ ├── api-getChatMessages.jsp │ ├── api-getCoverArt.jsp │ ├── api-getGenres.jsp │ ├── api-getIndexes.jsp │ ├── api-getInternetRadioStations.jsp │ ├── api-getLicense.jsp │ ├── api-getLyrics.jsp │ ├── api-getMusicDirectory.jsp │ ├── api-getMusicFolders.jsp │ ├── api-getNewestPodcasts.jsp │ ├── api-getNowPlaying.jsp │ ├── api-getPlayQueue.jsp │ ├── api-getPlaylist.jsp │ ├── api-getPlaylists.jsp │ ├── api-getPodcasts.jsp │ ├── api-getRandomSongs.jsp │ ├── api-getShares.jsp │ ├── api-getSimilarSongs.jsp │ ├── api-getSimilarSongs2.jsp │ ├── api-getSong.jsp │ ├── api-getSongsByGenre.jsp │ ├── api-getStarred.jsp │ ├── api-getStarred2.jsp │ ├── api-getTopSongs.jsp │ ├── api-getUser.jsp │ ├── api-getUsers.jsp │ ├── api-getVideos.jsp │ ├── api-hls.jsp │ ├── api-jukeboxControl.jsp │ ├── api-ping.jsp │ ├── api-refreshPodcasts.jsp │ ├── api-savePlayQueue.jsp │ ├── api-scrobble.jsp │ ├── api-search.jsp │ ├── api-search2.jsp │ ├── api-search3.jsp │ ├── api-setRating.jsp │ ├── api-star.jsp │ ├── api-stream.jsp │ ├── api-unstar.jsp │ ├── api-updatePlaylist.jsp │ ├── api-updateShare.jsp │ ├── api-updateUser.jsp │ ├── api.jsp │ ├── apps-android.jsp │ ├── apps-audiophone.jsp │ ├── apps-avsub.jsp │ ├── apps-dsub.jsp │ ├── apps-isub.jsp │ ├── apps-jamstash.jsp │ ├── apps-mmtm.jsp │ ├── apps-perisonic.jsp │ ├── apps-playsub.jsp │ ├── apps-polysonic.jsp │ ├── apps-silversonic.jsp │ ├── apps-sonicair.jsp │ ├── apps-sonicstreamer.jsp │ ├── apps-soundwaves.jsp │ ├── apps-subair.jsp │ ├── apps-subclient.jsp │ ├── apps-subfire.jsp │ ├── apps-subgadget.jsp │ ├── apps-subhub.jsp │ ├── apps-submariner.jsp │ ├── apps-submuxic.jsp │ ├── apps-subsonar.jsp │ ├── apps-subsonic8.jsp │ ├── apps-subsonicchannel.jsp │ ├── apps-subsonictv.jsp │ ├── apps-substream.jsp │ ├── apps-substreamer.jsp │ ├── apps-subwiji.jsp │ ├── apps-supersonic.jsp │ ├── apps-thumper.jsp │ ├── apps-winphone.jsp │ ├── apps-xenoamp.jsp │ ├── apps-xo.jsp │ ├── apps-zsubsonic.jsp │ ├── apps.jsp │ ├── changelog-older.jsp │ ├── changelog.jsp │ ├── contact.html │ ├── css │ ├── font-awesome.min.css │ ├── ie │ │ ├── PIE.htc │ │ ├── backgroundsize.min.htc │ │ ├── html5shiv.js │ │ └── v8.css │ ├── images │ │ └── overlay.png │ ├── skel.css │ ├── style-mobile.css │ ├── style-mobilep.css │ ├── style-narrow.css │ ├── style-narrower.css │ ├── style-normal.css │ ├── style-wide.css │ └── style.css │ ├── demo.jsp │ ├── download.jsp │ ├── download2.jsp │ ├── elements.html │ ├── faq.jsp │ ├── features.jsp │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── footer.jsp │ ├── forum.jsp │ ├── generic.html │ ├── getting-started.jsp │ ├── head.jsp │ ├── header.jsp │ ├── help.jsp │ ├── hosting.jsp │ ├── images │ ├── banner.jpg │ ├── pic01.jpg │ ├── pic02.jpg │ ├── pic03.jpg │ ├── pic04.jpg │ └── pic05.jpg │ ├── inc │ ├── api │ │ └── examples │ │ │ ├── albumInfo_example_1.xml │ │ │ ├── albumList2_example_1.xml │ │ │ ├── albumList_example_1.xml │ │ │ ├── album_example_1.xml │ │ │ ├── artistInfo2_example_1.xml │ │ │ ├── artistInfo_example_1.xml │ │ │ ├── artist_example_1.xml │ │ │ ├── artists_example_1.xml │ │ │ ├── bookmarks_example_1.xml │ │ │ ├── chatMessages_example_1.xml │ │ │ ├── directory_example_1.xml │ │ │ ├── directory_example_2.xml │ │ │ ├── error_example_1.xml │ │ │ ├── genres_example_1.xml │ │ │ ├── indexes_example_1.xml │ │ │ ├── internetRadioStations_example_1.xml │ │ │ ├── jukeboxPlaylist_example_1.xml │ │ │ ├── jukeboxStatus_example_1.xml │ │ │ ├── license_example_1.xml │ │ │ ├── lyrics_example_1.xml │ │ │ ├── musicFolders_example_1.xml │ │ │ ├── newest_podcasts_example_1.xml │ │ │ ├── nowPlaying_example_1.xml │ │ │ ├── ping_example_1.xml │ │ │ ├── playQueue_example_1.xml │ │ │ ├── playlist_example_1.xml │ │ │ ├── playlists_example_1.xml │ │ │ ├── podcasts_example_1.xml │ │ │ ├── randomSongs_example_1.xml │ │ │ ├── searchResult2_example_1.xml │ │ │ ├── searchResult3_example_1.xml │ │ │ ├── searchResult_example_1.xml │ │ │ ├── shares_example_1.xml │ │ │ ├── similarSongs2_example_1.xml │ │ │ ├── similarSongs_example_1.xml │ │ │ ├── song_example_1.xml │ │ │ ├── songsByGenre_example_1.xml │ │ │ ├── starred2_example_1.xml │ │ │ ├── starred_example_1.xml │ │ │ ├── topSongs_example_1.xml │ │ │ ├── user_example_1.xml │ │ │ ├── users_example_1.xml │ │ │ └── videos_example_1.xml │ ├── img │ │ ├── amazon_app_store.png │ │ ├── available_on_appstore.png │ │ ├── black_berry_world.png │ │ ├── car.png │ │ ├── chrome_web_store.png │ │ ├── crowd.jpg │ │ ├── demo.jpg │ │ ├── desk.jpg │ │ ├── fancyzoom │ │ │ ├── closebox.png │ │ │ ├── spacer.gif │ │ │ ├── zoom-caption-fill.png │ │ │ ├── zoom-caption-l.png │ │ │ ├── zoom-caption-r.png │ │ │ ├── zoom-shadow1.png │ │ │ ├── zoom-shadow2.png │ │ │ ├── zoom-shadow3.png │ │ │ ├── zoom-shadow4.png │ │ │ ├── zoom-shadow5.png │ │ │ ├── zoom-shadow6.png │ │ │ ├── zoom-shadow7.png │ │ │ ├── zoom-shadow8.png │ │ │ ├── zoom-spin-1.png │ │ │ ├── zoom-spin-10.png │ │ │ ├── zoom-spin-11.png │ │ │ ├── zoom-spin-12.png │ │ │ ├── zoom-spin-2.png │ │ │ ├── zoom-spin-3.png │ │ │ ├── zoom-spin-4.png │ │ │ ├── zoom-spin-5.png │ │ │ ├── zoom-spin-6.png │ │ │ ├── zoom-spin-7.png │ │ │ ├── zoom-spin-8.png │ │ │ └── zoom-spin-9.png │ │ ├── favicon.png │ │ ├── footer.jpg │ │ ├── gettingstarted │ │ │ ├── license.png │ │ │ ├── mediafolders.png │ │ │ └── windows-service.png │ │ ├── gpl.png │ │ ├── html5-webapp.png │ │ ├── mac-installer-small.png │ │ ├── mac-installer.png │ │ ├── premium.jpg │ │ ├── road.jpg │ │ ├── screenshot-1.png │ │ ├── screenshot-2.png │ │ ├── screenshots │ │ │ ├── android │ │ │ │ ├── android-1.png │ │ │ │ ├── android-2.png │ │ │ │ ├── android-3.png │ │ │ │ ├── android-thumb-1.png │ │ │ │ ├── android-thumb-2.png │ │ │ │ └── android-thumb-3.png │ │ │ ├── audiophone │ │ │ │ ├── audiophone-1.png │ │ │ │ ├── audiophone-logo.png │ │ │ │ └── audiophone-thumb-1.png │ │ │ ├── avsub │ │ │ │ ├── avsub-1.png │ │ │ │ ├── avsub-2.png │ │ │ │ └── avsub-3.png │ │ │ ├── chumby │ │ │ │ ├── chumby-1.png │ │ │ │ └── chumby-thumb-1.png │ │ │ ├── dsub │ │ │ │ ├── dsub-1.png │ │ │ │ ├── dsub-2.png │ │ │ │ ├── dsub-3.png │ │ │ │ ├── dsub-thumb-1.png │ │ │ │ ├── dsub-thumb-2.png │ │ │ │ └── dsub-thumb-3.png │ │ │ ├── hypersonic │ │ │ │ ├── hypersonic-1.png │ │ │ │ ├── hypersonic-2.png │ │ │ │ ├── hypersonic-3.png │ │ │ │ ├── hypersonic-thumb-1.png │ │ │ │ ├── hypersonic-thumb-2.png │ │ │ │ └── hypersonic-thumb-3.png │ │ │ ├── isub │ │ │ │ ├── isub-1.png │ │ │ │ ├── isub-2.png │ │ │ │ ├── isub-3.png │ │ │ │ ├── isub-thumb-1.png │ │ │ │ ├── isub-thumb-2.png │ │ │ │ └── isub-thumb-3.png │ │ │ ├── jamstash │ │ │ │ ├── jamstash-1.png │ │ │ │ └── jamstash-thumb-1.png │ │ │ ├── mmtm │ │ │ │ ├── mmtm-1.png │ │ │ │ └── mmtm-thumb-1.png │ │ │ ├── periscope │ │ │ │ ├── periscope-1.png │ │ │ │ └── periscope-thumb-1.png │ │ │ ├── perisonic │ │ │ │ └── perisonic-1.png │ │ │ ├── playsub │ │ │ │ ├── playsub-1.png │ │ │ │ ├── playsub-2.png │ │ │ │ └── playsub-3.png │ │ │ ├── polysonic │ │ │ │ └── polysonic-1.jpg │ │ │ ├── silversonic │ │ │ │ ├── silversonic-1.png │ │ │ │ ├── silversonic-2.png │ │ │ │ ├── silversonic-3.png │ │ │ │ ├── silversonic-thumb-1.png │ │ │ │ ├── silversonic-thumb-2.png │ │ │ │ └── silversonic-thumb-3.png │ │ │ ├── sonicair │ │ │ │ └── sonicair-1.png │ │ │ ├── sonicstreamer │ │ │ │ └── sonicstreamer-1.png │ │ │ ├── soundwaves │ │ │ │ └── soundwaves-1.jpeg │ │ │ ├── subair │ │ │ │ ├── subair-1.png │ │ │ │ └── subair-thumb-1.png │ │ │ ├── subclient │ │ │ │ ├── subclient-1.png │ │ │ │ └── subclient-thumb-1.png │ │ │ ├── subfire │ │ │ │ ├── subfire-1.png │ │ │ │ └── subfire-thumb-1.jpg │ │ │ ├── subgadget │ │ │ │ └── subgadget-1.png │ │ │ ├── subhub │ │ │ │ ├── subhub-1.png │ │ │ │ ├── subhub-2.png │ │ │ │ ├── subhub-thumb-1.png │ │ │ │ └── subhub-thumb-2.png │ │ │ ├── submariner │ │ │ │ ├── submariner-1.png │ │ │ │ └── submariner-thumb-1.png │ │ │ ├── submuxic │ │ │ │ ├── submuxic-1.png │ │ │ │ ├── submuxic-2.png │ │ │ │ ├── submuxic-thumb-1.jpeg │ │ │ │ └── submuxic-thumb-2.jpeg │ │ │ ├── subsonar │ │ │ │ ├── subsonar-1.png │ │ │ │ └── subsonar-thumb-1.png │ │ │ ├── subsonic8 │ │ │ │ ├── subsonic8-1.png │ │ │ │ └── subsonic8-thumb-1.png │ │ │ ├── subsonicchannel │ │ │ │ ├── subsonicchannel-1.png │ │ │ │ └── subsonicchannel-thumb-1.png │ │ │ ├── subsonictv │ │ │ │ ├── subsonictv-1.png │ │ │ │ └── subsonictv-thumb-1.png │ │ │ ├── substream │ │ │ │ ├── substream-1.png │ │ │ │ ├── substream-2.png │ │ │ │ ├── substream-3.png │ │ │ │ ├── substream-thumb-1.png │ │ │ │ ├── substream-thumb-2.png │ │ │ │ └── substream-thumb-3.png │ │ │ ├── substreamer │ │ │ │ ├── substreamer-1.png │ │ │ │ ├── substreamer-2.png │ │ │ │ ├── substreamer-thumb-1.png │ │ │ │ └── substreamer-thumb-2.png │ │ │ ├── subwiji │ │ │ │ ├── subwiji-1.png │ │ │ │ ├── subwiji-2.png │ │ │ │ ├── subwiji-thumb-1.png │ │ │ │ └── subwiji-thumb-2.png │ │ │ ├── supersonic │ │ │ │ ├── supersonic-1.png │ │ │ │ └── supersonic-thumb-1.png │ │ │ ├── thumper │ │ │ │ ├── thumper-1.png │ │ │ │ └── thumper-thumb-1.png │ │ │ ├── winphone │ │ │ │ ├── winphone-1.png │ │ │ │ ├── winphone-2.png │ │ │ │ ├── winphone-3.png │ │ │ │ ├── winphone-thumb-1.png │ │ │ │ ├── winphone-thumb-2.png │ │ │ │ └── winphone-thumb-3.png │ │ │ ├── xenoamp │ │ │ │ ├── xenoamp-1.png │ │ │ │ ├── xenoamp-2.png │ │ │ │ ├── xenoamp-3.png │ │ │ │ ├── xenoamp-thumb-1.png │ │ │ │ ├── xenoamp-thumb-2.png │ │ │ │ └── xenoamp-thumb-3.png │ │ │ ├── xo │ │ │ │ ├── xo-1.png │ │ │ │ └── xo-thumb-1.png │ │ │ └── zsubsonic │ │ │ │ ├── zsubsonic-1.png │ │ │ │ ├── zsubsonic-2.png │ │ │ │ ├── zsubsonic-3.png │ │ │ │ ├── zsubsonic-thumb-1.png │ │ │ │ ├── zsubsonic-thumb-2.png │ │ │ │ └── zsubsonic-thumb-3.png │ │ ├── sonos │ │ │ ├── sonos-1.png │ │ │ ├── sonos-2.png │ │ │ ├── sonos-3.png │ │ │ ├── sonos-4.png │ │ │ └── sonos-header.png │ │ ├── subsonic_logo.png │ │ ├── subsonic_logo_mail.png │ │ ├── video.png │ │ ├── windows-installer-small.png │ │ ├── windows-installer.png │ │ ├── windows_phone.png │ │ └── windows_store.png │ └── js │ │ ├── FancyZoom.js │ │ └── FancyZoomHTML.js │ ├── include.jsp │ ├── index.html │ ├── index.jsp │ ├── installation.jsp │ ├── js │ ├── init.js │ ├── jquery.dropotron.min.js │ ├── jquery.min.js │ ├── jquery.scrollgress.min.js │ ├── skel-layers.min.js │ └── skel.min.js │ ├── libraries.jsp │ ├── paypal-landing.jsp │ ├── premium.jsp │ ├── redirect-expired.jsp │ ├── robots.txt │ ├── sass │ ├── _mixins.scss │ ├── _vars.scss │ ├── ie │ │ └── v8.scss │ ├── style-mobile.scss │ ├── style-mobilep.scss │ ├── style-narrow.scss │ ├── style-narrower.scss │ ├── style-normal.scss │ ├── style-wide.scss │ └── style.scss │ ├── sonos.jsp │ ├── subsonic-ad.jsp │ ├── tracking.jsp │ ├── transcoding.jsp │ ├── translate.jsp │ └── zazeen-ad.jsp ├── subsonic-sonos-api ├── pom.xml └── src │ └── main │ └── resources │ └── sonos-1.1.wsdl ├── subsonic-tools ├── ehcache-monitor │ └── ehcache-monitor-kit-1.0.3-distribution.tar.gz ├── exe4j │ ├── exe4j_windows_4_5_1.exe │ └── exe4j_windows_4_5_1.zip ├── nsis │ ├── NSIS_Simple_Firewall_Plugin_1.20.zip │ ├── Processes.zip │ └── nsis-2.46-setup.exe ├── packages │ └── Packages.dmg └── sonos-selftest │ └── smapiConfig.cfg ├── subsonic-transcode ├── README.TXT ├── linux │ ├── ffmpeg │ └── lame ├── mac │ ├── ffmpeg │ └── lame └── windows │ ├── README.TXT │ ├── ffmpeg.exe │ ├── ffmpeg_license.txt │ ├── lame.exe │ └── lame_license.txt └── subsonic-web ├── android-donation.php ├── api.php ├── changelog.php ├── demo.php ├── download.php ├── features.php ├── forum.html ├── forum.php ├── index.html ├── index.php ├── installation.php ├── robots.txt ├── screenshots.php ├── subsonic-ad.php ├── transcode.html ├── transcoding.php ├── translate.php └── version.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/README.md -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- 1 | rd /s /q "subsonic-main\target" 2 | mvn package -U 3 | pause -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/pom.xml -------------------------------------------------------------------------------- /repo/ant-zip/ant-zip/1.6.2/ant-zip-1.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/ant-zip/ant-zip/1.6.2/ant-zip-1.6.2.jar -------------------------------------------------------------------------------- /repo/ant-zip/ant-zip/1.6.2/ant-zip-1.6.2.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/ant-zip/ant-zip/1.6.2/ant-zip-1.6.2.pom -------------------------------------------------------------------------------- /repo/com/hoodcomputing/natpmp/0.1/natpmp-0.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/hoodcomputing/natpmp/0.1/natpmp-0.1-sources.jar -------------------------------------------------------------------------------- /repo/com/hoodcomputing/natpmp/0.1/natpmp-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/hoodcomputing/natpmp/0.1/natpmp-0.1.jar -------------------------------------------------------------------------------- /repo/com/hoodcomputing/natpmp/0.1/natpmp-0.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/hoodcomputing/natpmp/0.1/natpmp-0.1.pom -------------------------------------------------------------------------------- /repo/com/jgoodies/forms/1.1.0/forms-1.1.0-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/jgoodies/forms/1.1.0/forms-1.1.0-sources.jar -------------------------------------------------------------------------------- /repo/com/jgoodies/forms/1.1.0/forms-1.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/jgoodies/forms/1.1.0/forms-1.1.0.jar -------------------------------------------------------------------------------- /repo/com/jgoodies/forms/1.1.0/forms-1.1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/jgoodies/forms/1.1.0/forms-1.1.0.pom -------------------------------------------------------------------------------- /repo/com/jgoodies/looks/2.1.4/looks-2.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/jgoodies/looks/2.1.4/looks-2.1.4.jar -------------------------------------------------------------------------------- /repo/com/jgoodies/looks/2.1.4/looks-2.1.4.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/jgoodies/looks/2.1.4/looks-2.1.4.pom -------------------------------------------------------------------------------- /repo/com/oracle/appbundler/1.0/appbundler-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/oracle/appbundler/1.0/appbundler-1.0.jar -------------------------------------------------------------------------------- /repo/com/oracle/appbundler/1.0/appbundler-1.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/com/oracle/appbundler/1.0/appbundler-1.0.pom -------------------------------------------------------------------------------- /repo/javax/xml/jaxrpc/1.1/jaxrpc-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/javax/xml/jaxrpc/1.1/jaxrpc-1.1.jar -------------------------------------------------------------------------------- /repo/javax/xml/jaxrpc/1.1/jaxrpc-1.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/javax/xml/jaxrpc/1.1/jaxrpc-1.1.pom -------------------------------------------------------------------------------- /repo/net/sbbi/sbbi-upnplib/1.0.4/sbbi-upnplib-1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/net/sbbi/sbbi-upnplib/1.0.4/sbbi-upnplib-1.0.4.jar -------------------------------------------------------------------------------- /repo/net/sbbi/sbbi-upnplib/1.0.4/sbbi-upnplib-1.0.4.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/net/sbbi/sbbi-upnplib/1.0.4/sbbi-upnplib-1.0.4.pom -------------------------------------------------------------------------------- /repo/org/directwebremoting/dwr/3.0.rc1/dwr-3.0.rc1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/org/directwebremoting/dwr/3.0.rc1/dwr-3.0.rc1.jar -------------------------------------------------------------------------------- /repo/org/directwebremoting/dwr/3.0.rc1/dwr-3.0.rc1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/org/directwebremoting/dwr/3.0.rc1/dwr-3.0.rc1.pom -------------------------------------------------------------------------------- /repo/org/wetorrent/weupnp/2009-10-16/weupnp-2009-10-16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/org/wetorrent/weupnp/2009-10-16/weupnp-2009-10-16.jar -------------------------------------------------------------------------------- /repo/org/wetorrent/weupnp/2009-10-16/weupnp-2009-10-16.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/repo/org/wetorrent/weupnp/2009-10-16/weupnp-2009-10-16.pom -------------------------------------------------------------------------------- /subsonic-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/build.gradle -------------------------------------------------------------------------------- /subsonic-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/gradle.properties -------------------------------------------------------------------------------- /subsonic-android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /subsonic-android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /subsonic-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/gradlew -------------------------------------------------------------------------------- /subsonic-android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/gradlew.bat -------------------------------------------------------------------------------- /subsonic-android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/local.properties -------------------------------------------------------------------------------- /subsonic-android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':subsonic' 2 | -------------------------------------------------------------------------------- /subsonic-android/subsonic/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/build.gradle -------------------------------------------------------------------------------- /subsonic-android/subsonic/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/debug.keystore -------------------------------------------------------------------------------- /subsonic-android/subsonic/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/proguard-rules.txt -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/assets/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/assets/html/style.css -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/anim/push_up_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/anim/push_up_in.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/anim/push_up_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/anim/push_up_out.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/layout/appwidget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/layout/appwidget.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/layout/equalizer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/layout/equalizer.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/layout/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/layout/help.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/layout/lyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/layout/lyrics.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/layout/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/layout/search.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/menu/nowplaying.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/menu/nowplaying.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /subsonic-android/subsonic/subsonic.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-android/subsonic/subsonic.keystore -------------------------------------------------------------------------------- /subsonic-assembly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-assembly/pom.xml -------------------------------------------------------------------------------- /subsonic-assembly/src/main/assembly/src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-assembly/src/main/assembly/src.xml -------------------------------------------------------------------------------- /subsonic-assembly/src/main/assembly/standalone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-assembly/src/main/assembly/standalone.xml -------------------------------------------------------------------------------- /subsonic-assembly/src/main/assembly/war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-assembly/src/main/assembly/war.xml -------------------------------------------------------------------------------- /subsonic-backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-backend/pom.xml -------------------------------------------------------------------------------- /subsonic-backend/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-backend/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /subsonic-backend/src/main/webapp/WEB-INF/jsp/head.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-backend/src/main/webapp/WEB-INF/jsp/head.jsp -------------------------------------------------------------------------------- /subsonic-backend/src/main/webapp/WEB-INF/jsp/include.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-backend/src/main/webapp/WEB-INF/jsp/include.jsp -------------------------------------------------------------------------------- /subsonic-backend/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-backend/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /subsonic-blackberry/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-blackberry/README.txt -------------------------------------------------------------------------------- /subsonic-blackberry/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-blackberry/build.xml -------------------------------------------------------------------------------- /subsonic-blackberry/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-blackberry/local.properties -------------------------------------------------------------------------------- /subsonic-booter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-booter/pom.xml -------------------------------------------------------------------------------- /subsonic-booter/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /subsonic-booter/src/main/resources/subsonic.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-booter/src/main/resources/subsonic.keystore -------------------------------------------------------------------------------- /subsonic-booter/src/main/resources/web-jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-booter/src/main/resources/web-jetty.xml -------------------------------------------------------------------------------- /subsonic-booter/src/main/script/subsonic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-booter/src/main/script/subsonic.bat -------------------------------------------------------------------------------- /subsonic-booter/src/main/script/subsonic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-booter/src/main/script/subsonic.sh -------------------------------------------------------------------------------- /subsonic-graphics/Advert-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/Advert-Regular.ttf -------------------------------------------------------------------------------- /subsonic-graphics/android-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-1.png -------------------------------------------------------------------------------- /subsonic-graphics/android-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-10.png -------------------------------------------------------------------------------- /subsonic-graphics/android-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-11.png -------------------------------------------------------------------------------- /subsonic-graphics/android-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-12.png -------------------------------------------------------------------------------- /subsonic-graphics/android-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-2.png -------------------------------------------------------------------------------- /subsonic-graphics/android-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-3.png -------------------------------------------------------------------------------- /subsonic-graphics/android-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-4.png -------------------------------------------------------------------------------- /subsonic-graphics/android-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-5.png -------------------------------------------------------------------------------- /subsonic-graphics/android-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-6.png -------------------------------------------------------------------------------- /subsonic-graphics/android-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-7.png -------------------------------------------------------------------------------- /subsonic-graphics/android-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-8.png -------------------------------------------------------------------------------- /subsonic-graphics/android-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-9.png -------------------------------------------------------------------------------- /subsonic-graphics/android-buttons/media-buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-buttons/media-buttons.svg -------------------------------------------------------------------------------- /subsonic-graphics/android-feature-graphic-290x140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-feature-graphic-290x140.png -------------------------------------------------------------------------------- /subsonic-graphics/android-feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-feature-graphic.png -------------------------------------------------------------------------------- /subsonic-graphics/android-feature-graphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-feature-graphic.xcf -------------------------------------------------------------------------------- /subsonic-graphics/android-market-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-market-promo.png -------------------------------------------------------------------------------- /subsonic-graphics/android-market-promo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/android-market-promo.xcf -------------------------------------------------------------------------------- /subsonic-graphics/blackberry-feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/blackberry-feature-graphic.png -------------------------------------------------------------------------------- /subsonic-graphics/blackberry-feature-graphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/blackberry-feature-graphic.xcf -------------------------------------------------------------------------------- /subsonic-graphics/car-stereo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/car-stereo.jpg -------------------------------------------------------------------------------- /subsonic-graphics/chromecast/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/chromecast/README.TXT -------------------------------------------------------------------------------- /subsonic-graphics/chromecast/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/chromecast/background.jpg -------------------------------------------------------------------------------- /subsonic-graphics/chromecast/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/chromecast/logo.png -------------------------------------------------------------------------------- /subsonic-graphics/chromecast/subsonic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/chromecast/subsonic.css -------------------------------------------------------------------------------- /subsonic-graphics/chromecast/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/chromecast/watermark.png -------------------------------------------------------------------------------- /subsonic-graphics/default_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/default_cover.jpg -------------------------------------------------------------------------------- /subsonic-graphics/default_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/default_cover.png -------------------------------------------------------------------------------- /subsonic-graphics/default_cover_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/default_cover_big.jpg -------------------------------------------------------------------------------- /subsonic-graphics/default_cover_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/default_cover_big.png -------------------------------------------------------------------------------- /subsonic-graphics/desert-1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/desert-1024x768.jpg -------------------------------------------------------------------------------- /subsonic-graphics/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/desert.jpg -------------------------------------------------------------------------------- /subsonic-graphics/galaxy-nexus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/galaxy-nexus-1.png -------------------------------------------------------------------------------- /subsonic-graphics/galaxy-nexus-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/galaxy-nexus-3.png -------------------------------------------------------------------------------- /subsonic-graphics/galaxy-nexus-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/galaxy-nexus-6.png -------------------------------------------------------------------------------- /subsonic-graphics/galaxy-nexus-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/galaxy-nexus-template.png -------------------------------------------------------------------------------- /subsonic-graphics/girl-in-grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/girl-in-grass.jpg -------------------------------------------------------------------------------- /subsonic-graphics/icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/icon-114.png -------------------------------------------------------------------------------- /subsonic-graphics/icon-480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/icon-480.png -------------------------------------------------------------------------------- /subsonic-graphics/icon-512-noalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/icon-512-noalpha.png -------------------------------------------------------------------------------- /subsonic-graphics/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/icon-512.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-1.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-11.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-12.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-2.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-3.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-4.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-5.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-6.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-7.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-8.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-9.png -------------------------------------------------------------------------------- /subsonic-graphics/nexus-one-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/nexus-one-template.png -------------------------------------------------------------------------------- /subsonic-graphics/skiing-1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/skiing-1024x768.jpg -------------------------------------------------------------------------------- /subsonic-graphics/skiing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/skiing.jpg -------------------------------------------------------------------------------- /subsonic-graphics/subsonic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/subsonic.svg -------------------------------------------------------------------------------- /subsonic-graphics/video-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-graphics/video-browser.png -------------------------------------------------------------------------------- /subsonic-installer-debian/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/pom.xml -------------------------------------------------------------------------------- /subsonic-installer-debian/src/DEBIAN/conffiles: -------------------------------------------------------------------------------- 1 | /etc/default/subsonic 2 | -------------------------------------------------------------------------------- /subsonic-installer-debian/src/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/DEBIAN/control -------------------------------------------------------------------------------- /subsonic-installer-debian/src/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/DEBIAN/postinst -------------------------------------------------------------------------------- /subsonic-installer-debian/src/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/DEBIAN/postrm -------------------------------------------------------------------------------- /subsonic-installer-debian/src/DEBIAN/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/DEBIAN/preinst -------------------------------------------------------------------------------- /subsonic-installer-debian/src/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/DEBIAN/prerm -------------------------------------------------------------------------------- /subsonic-installer-debian/src/etc/default/subsonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/etc/default/subsonic -------------------------------------------------------------------------------- /subsonic-installer-debian/src/etc/init.d/subsonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-debian/src/etc/init.d/subsonic -------------------------------------------------------------------------------- /subsonic-installer-mac/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-mac/pom.xml -------------------------------------------------------------------------------- /subsonic-installer-mac/src/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-mac/src/postinstall.sh -------------------------------------------------------------------------------- /subsonic-installer-mac/src/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-mac/src/preinstall.sh -------------------------------------------------------------------------------- /subsonic-installer-mac/src/subsonic.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-mac/src/subsonic.icns -------------------------------------------------------------------------------- /subsonic-installer-mac/src/subsonic.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-mac/src/subsonic.pkgproj -------------------------------------------------------------------------------- /subsonic-installer-mac/src/subsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-mac/src/subsonic.png -------------------------------------------------------------------------------- /subsonic-installer-rpm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-rpm/pom.xml -------------------------------------------------------------------------------- /subsonic-installer-rpm/src/etc/init.d/subsonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-rpm/src/etc/init.d/subsonic -------------------------------------------------------------------------------- /subsonic-installer-rpm/src/etc/sysconfig/subsonic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-rpm/src/etc/sysconfig/subsonic -------------------------------------------------------------------------------- /subsonic-installer-rpm/src/subsonic.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-rpm/src/subsonic.spec -------------------------------------------------------------------------------- /subsonic-installer-windows/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-windows/pom.xml -------------------------------------------------------------------------------- /subsonic-installer-windows/src/main/exe4j/booksonic-agent-elevated.exe.vmoptions: -------------------------------------------------------------------------------- 1 | -Xmx16m 2 | -------------------------------------------------------------------------------- /subsonic-installer-windows/src/main/exe4j/booksonic-agent.exe.vmoptions: -------------------------------------------------------------------------------- 1 | -Xmx16m 2 | -------------------------------------------------------------------------------- /subsonic-installer-windows/src/main/exe4j/subsonic-agent-elevated.exe.vmoptions: -------------------------------------------------------------------------------- 1 | -Xmx16m 2 | -------------------------------------------------------------------------------- /subsonic-installer-windows/src/main/exe4j/subsonic-agent.exe.vmoptions: -------------------------------------------------------------------------------- 1 | -Xmx16m 2 | -------------------------------------------------------------------------------- /subsonic-installer-windows/src/main/nsis/subsonic.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-installer-windows/src/main/nsis/subsonic.nsi -------------------------------------------------------------------------------- /subsonic-main/Getting Started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/Getting Started.html -------------------------------------------------------------------------------- /subsonic-main/Getting Started.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/Getting Started.url -------------------------------------------------------------------------------- /subsonic-main/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/LICENSE.TXT -------------------------------------------------------------------------------- /subsonic-main/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/README.TXT -------------------------------------------------------------------------------- /subsonic-main/TODO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/TODO.TXT -------------------------------------------------------------------------------- /subsonic-main/dreamplug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/dreamplug.txt -------------------------------------------------------------------------------- /subsonic-main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/pom.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/java/net/kakadua/KakaduaUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/net/kakadua/KakaduaUtil.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/CDL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/CDL.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/Cookie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/Cookie.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/CookieList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/CookieList.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/HTTP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/HTTP.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/HTTPTokener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/HTTPTokener.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONArray.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONException.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONML.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONObject.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONString.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONStringer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONStringer.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONTokener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONTokener.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/JSONWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/JSONWriter.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/XML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/XML.java -------------------------------------------------------------------------------- /subsonic-main/src/main/java/org/json/XMLTokener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/java/org/json/XMLTokener.java -------------------------------------------------------------------------------- /subsonic-main/src/main/resources/ehcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/resources/ehcache.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/dwr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/dwr.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/albumMain.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/albumMain.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/allmusic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/allmusic.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/artistMain.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/artistMain.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/artists.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/artists.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/coverArt.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/coverArt.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/db.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/db.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/editTags.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/editTags.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/head.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/head.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/help.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/home.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/homePager.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/homePager.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/include.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/include.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/index.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/jquery.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/jquery.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/left.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/left.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/login.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/lyrics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/lyrics.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/more.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/more.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/notFound.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/notFound.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/playlist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/playlist.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/playlists.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/playlists.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/podcast.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/podcast.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/rating.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/recover.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/recover.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/reload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/reload.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/right.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/right.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/search.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/search.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/starred.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/starred.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/status.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/test.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/test.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/top.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/top.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/upload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/upload.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/videoMain.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/videoMain.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/wap/browse.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/browse.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/wap/head.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/head.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/wap/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/index.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/jsp/wap/search.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/jsp/wap/search.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/sub.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/sub.tld -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/ad/omakasa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/ad/omakasa.html -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/crossdomain.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/error.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/flash/jw-player-5.10.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/flash/jw-player-5.10.swf -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/flash/whotube.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/flash/whotube.zip -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/donate.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/gpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/gpl.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/paypal.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/phone.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/random.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/remove.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/search.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/subair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/subair.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/upload.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/buuftheme/wap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/buuftheme/wap.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/coolandclean/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/coolandclean/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/coolandclean/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/coolandclean/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/coolandclean/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/coolandclean/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/default_dark/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/default_dark/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/default_dark/gpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/default_dark/gpl.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/default_dark/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/default_dark/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/default_dark/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/default_dark/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/default_light/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/default_light/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/donate.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/download.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/forward.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/help_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/help_small.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/paypal.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/phone.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/playing.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/podcast.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/progress.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/random.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/rating_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/rating_off.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/rating_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/rating_on.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/remove.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/search.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/denim/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/denim/upload.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/favicon.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/donate.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/download.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/forward.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/paypal.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/phone.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/playing.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/podcast.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/progress.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/random.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/rating_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/rating_on.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/remove.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/search.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/groove/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/groove/upload.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hd/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hd/background.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hicon/subsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hicon/subsonic.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hiconi/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hiconi/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hiconi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hiconi/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hiconi/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hiconi/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hiconi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hiconi/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hiconi/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hiconi/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hiconi/subsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hiconi/subsonic.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/bg.jpg -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/bg2.jpg -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/hitech/subsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/hitech/subsonic.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/lastfm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/lastfm.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/pinkpanther/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/pinkpanther/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/add.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/back.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/donate.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/down.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/paypal.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/play.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/random.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/remove.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/search.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/up.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/upload.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/ripserver/wap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/ripserver/wap.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/donate.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/forward.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/paypal.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/phone.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/playing.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/podcast.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/random.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/remove.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/search.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/simplify/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/simplify/upload.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/subsonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/subsonic.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/slick/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/slick/top_bg.jpg -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/donate.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/download.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/favicon.ico -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/forward.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/help_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/help_small.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/paypal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/paypal.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/phone.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/playing.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/podcast.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/progress.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/random.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/rating_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/rating_off.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/rating_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/rating_on.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/remove.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/search.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/settings.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/status.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic/upload.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/error.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/phone.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_blue/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_blue/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/sonic_white/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/sonic_white/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/add.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/back.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/down.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/help.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/home.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/log.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/logo.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/more.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/subStandard/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/subStandard/up.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/audio_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/audio_off.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/audio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/audio_on.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/cast_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/cast_idle.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/download.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/pause.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/play.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/icons/video/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/icons/video/share.png -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/index.html -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/AC_OETags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/AC_OETags.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/builder.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/cast_sender-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/cast_sender-v1.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/controls.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/effects.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/mousetrap-1.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/mousetrap-1.5.3.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/prototype.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/scripts-2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/scripts-2.0.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/swfobject.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/b.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/l.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/lb.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/lt.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/r.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/rb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/rb.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/rt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/rt.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/tip_balloon/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/tip_balloon/t.gif -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/script/wz_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/script/wz_tooltip.js -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/sonos/presentationMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/sonos/presentationMap.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/sonos/presentationMap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/sonos/presentationMap.xsd -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/sonos/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/sonos/strings.xml -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/barents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/barents.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/base.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/black.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/buuftheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/buuftheme.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/coolandclean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/coolandclean.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/default.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/denim.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/denim.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/groove.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/groove.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/groove_simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/groove_simple.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hd.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hd1080.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hd1080.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hd720.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hd720.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hd768.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hd768.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hicon.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hiconi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hiconi.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/hitech.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/hitech.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/midnight.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/midnightfun.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/midnightfun.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/monochrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/monochrome.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/monochrome_black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/monochrome_black.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/pinkpanther.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/pinkpanther.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/ripserver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/ripserver.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/sandstorm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/sandstorm.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/simplify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/simplify.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/slick.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/sonic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/sonic.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/sonic_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/sonic_blue.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/sonic_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/sonic_white.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/subStandard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/subStandard.css -------------------------------------------------------------------------------- /subsonic-main/src/main/webapp/style/videoPlayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-main/src/main/webapp/style/videoPlayer.css -------------------------------------------------------------------------------- /subsonic-rest-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-rest-api/pom.xml -------------------------------------------------------------------------------- /subsonic-site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/pom.xml -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/android-donation.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/android-donation.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-addChatMessage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-addChatMessage.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-changePassword.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-changePassword.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-createBookmark.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-createBookmark.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-createPlaylist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-createPlaylist.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-createShare.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-createShare.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-createUser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-createUser.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-deleteBookmark.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-deleteBookmark.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-deletePlaylist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-deletePlaylist.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-deleteShare.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-deleteShare.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-deleteUser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-deleteUser.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-download.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-download.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getAlbum.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getAlbum.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getAlbumInfo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getAlbumInfo.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getAlbumInfo2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getAlbumInfo2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getAlbumList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getAlbumList.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getAlbumList2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getAlbumList2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getArtist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getArtist.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getArtistInfo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getArtistInfo.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getArtistInfo2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getArtistInfo2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getArtists.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getArtists.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getAvatar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getAvatar.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getBookmarks.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getBookmarks.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getChatMessages.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getChatMessages.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getCoverArt.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getCoverArt.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getGenres.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getGenres.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getIndexes.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getIndexes.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getLicense.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getLicense.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getLyrics.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getLyrics.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getMusicDirectory.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getMusicDirectory.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getMusicFolders.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getMusicFolders.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getNewestPodcasts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getNewestPodcasts.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getNowPlaying.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getNowPlaying.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getPlayQueue.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getPlayQueue.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getPlaylist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getPlaylist.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getPlaylists.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getPlaylists.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getPodcasts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getPodcasts.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getRandomSongs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getRandomSongs.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getShares.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getShares.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getSimilarSongs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getSimilarSongs.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getSimilarSongs2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getSimilarSongs2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getSong.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getSong.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getSongsByGenre.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getSongsByGenre.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getStarred.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getStarred.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getStarred2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getStarred2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getTopSongs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getTopSongs.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getUser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getUser.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getUsers.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getUsers.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-getVideos.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-getVideos.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-hls.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-hls.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-jukeboxControl.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-jukeboxControl.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-ping.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-ping.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-refreshPodcasts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-refreshPodcasts.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-savePlayQueue.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-savePlayQueue.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-scrobble.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-scrobble.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-search.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-search.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-search2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-search2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-search3.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-search3.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-setRating.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-setRating.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-star.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-star.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-stream.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-stream.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-unstar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-unstar.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-updatePlaylist.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-updatePlaylist.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-updateShare.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-updateShare.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api-updateUser.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api-updateUser.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/api.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/api.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-android.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-android.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-audiophone.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-audiophone.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-avsub.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-avsub.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-dsub.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-dsub.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-isub.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-isub.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-jamstash.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-jamstash.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-mmtm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-mmtm.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-perisonic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-perisonic.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-playsub.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-playsub.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-polysonic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-polysonic.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-silversonic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-silversonic.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-sonicair.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-sonicair.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-sonicstreamer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-sonicstreamer.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-soundwaves.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-soundwaves.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subair.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subair.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subclient.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subclient.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subfire.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subfire.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subgadget.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subgadget.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subhub.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subhub.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-submariner.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-submariner.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-submuxic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-submuxic.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subsonar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subsonar.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subsonic8.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subsonic8.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subsonicchannel.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subsonicchannel.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subsonictv.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subsonictv.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-substream.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-substream.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-substreamer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-substreamer.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-subwiji.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-subwiji.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-supersonic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-supersonic.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-thumper.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-thumper.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-winphone.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-winphone.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-xenoamp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-xenoamp.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-xo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-xo.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps-zsubsonic.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps-zsubsonic.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/apps.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/apps.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/changelog-older.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/changelog-older.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/changelog.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/changelog.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/contact.html -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/font-awesome.min.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/ie/PIE.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/ie/PIE.htc -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/ie/html5shiv.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/ie/v8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/ie/v8.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/images/overlay.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/skel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/skel.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style-mobile.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style-mobilep.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style-mobilep.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style-narrow.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style-narrower.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style-narrower.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style-normal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style-normal.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style-wide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style-wide.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/css/style.css -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/demo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/demo.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/download.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/download.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/download2.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/download2.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/elements.html -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/faq.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/faq.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/features.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/features.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/footer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/footer.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/forum.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/forum.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/generic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/generic.html -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/getting-started.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/getting-started.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/head.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/head.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/header.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/help.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/help.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/hosting.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/hosting.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/images/banner.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/images/pic01.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/images/pic02.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/images/pic03.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/images/pic04.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/images/pic05.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/car.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/crowd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/crowd.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/demo.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/desk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/desk.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/favicon.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/footer.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/gpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/gpl.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/html5-webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/html5-webapp.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/mac-installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/mac-installer.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/premium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/premium.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/road.jpg -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/screenshot-1.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/screenshot-2.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/sonos/sonos-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/sonos/sonos-1.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/sonos/sonos-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/sonos/sonos-2.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/sonos/sonos-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/sonos/sonos-3.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/sonos/sonos-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/sonos/sonos-4.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/subsonic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/subsonic_logo.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/video.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/windows_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/windows_phone.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/img/windows_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/img/windows_store.png -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/js/FancyZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/js/FancyZoom.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/inc/js/FancyZoomHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/inc/js/FancyZoomHTML.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/include.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/include.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/index.html -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/installation.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/installation.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/js/init.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/js/jquery.dropotron.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/js/jquery.dropotron.min.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/js/jquery.min.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/js/skel-layers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/js/skel-layers.min.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/js/skel.min.js -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/libraries.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/libraries.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/paypal-landing.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/paypal-landing.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/premium.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/premium.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/redirect-expired.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/redirect-expired.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/_mixins.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/_vars.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/ie/v8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/ie/v8.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style-mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style-mobile.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style-mobilep.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style-mobilep.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style-narrow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style-narrow.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style-narrower.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style-narrower.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style-normal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style-normal.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style-wide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style-wide.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sass/style.scss -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/sonos.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/sonos.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/subsonic-ad.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/subsonic-ad.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/tracking.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/tracking.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/transcoding.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/transcoding.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/translate.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/translate.jsp -------------------------------------------------------------------------------- /subsonic-site/src/main/webapp/zazeen-ad.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-site/src/main/webapp/zazeen-ad.jsp -------------------------------------------------------------------------------- /subsonic-sonos-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-sonos-api/pom.xml -------------------------------------------------------------------------------- /subsonic-sonos-api/src/main/resources/sonos-1.1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-sonos-api/src/main/resources/sonos-1.1.wsdl -------------------------------------------------------------------------------- /subsonic-tools/exe4j/exe4j_windows_4_5_1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/exe4j/exe4j_windows_4_5_1.exe -------------------------------------------------------------------------------- /subsonic-tools/exe4j/exe4j_windows_4_5_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/exe4j/exe4j_windows_4_5_1.zip -------------------------------------------------------------------------------- /subsonic-tools/nsis/NSIS_Simple_Firewall_Plugin_1.20.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/nsis/NSIS_Simple_Firewall_Plugin_1.20.zip -------------------------------------------------------------------------------- /subsonic-tools/nsis/Processes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/nsis/Processes.zip -------------------------------------------------------------------------------- /subsonic-tools/nsis/nsis-2.46-setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/nsis/nsis-2.46-setup.exe -------------------------------------------------------------------------------- /subsonic-tools/packages/Packages.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/packages/Packages.dmg -------------------------------------------------------------------------------- /subsonic-tools/sonos-selftest/smapiConfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-tools/sonos-selftest/smapiConfig.cfg -------------------------------------------------------------------------------- /subsonic-transcode/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/README.TXT -------------------------------------------------------------------------------- /subsonic-transcode/linux/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/linux/ffmpeg -------------------------------------------------------------------------------- /subsonic-transcode/linux/lame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/linux/lame -------------------------------------------------------------------------------- /subsonic-transcode/mac/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/mac/ffmpeg -------------------------------------------------------------------------------- /subsonic-transcode/mac/lame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/mac/lame -------------------------------------------------------------------------------- /subsonic-transcode/windows/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/windows/README.TXT -------------------------------------------------------------------------------- /subsonic-transcode/windows/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/windows/ffmpeg.exe -------------------------------------------------------------------------------- /subsonic-transcode/windows/ffmpeg_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/windows/ffmpeg_license.txt -------------------------------------------------------------------------------- /subsonic-transcode/windows/lame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/windows/lame.exe -------------------------------------------------------------------------------- /subsonic-transcode/windows/lame_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-transcode/windows/lame_license.txt -------------------------------------------------------------------------------- /subsonic-web/android-donation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/android-donation.php -------------------------------------------------------------------------------- /subsonic-web/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/api.php -------------------------------------------------------------------------------- /subsonic-web/changelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/changelog.php -------------------------------------------------------------------------------- /subsonic-web/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/demo.php -------------------------------------------------------------------------------- /subsonic-web/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/download.php -------------------------------------------------------------------------------- /subsonic-web/features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/features.php -------------------------------------------------------------------------------- /subsonic-web/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/forum.html -------------------------------------------------------------------------------- /subsonic-web/forum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/forum.php -------------------------------------------------------------------------------- /subsonic-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/index.html -------------------------------------------------------------------------------- /subsonic-web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/index.php -------------------------------------------------------------------------------- /subsonic-web/installation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/installation.php -------------------------------------------------------------------------------- /subsonic-web/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /subsonic-web/screenshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/screenshots.php -------------------------------------------------------------------------------- /subsonic-web/subsonic-ad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/subsonic-ad.php -------------------------------------------------------------------------------- /subsonic-web/transcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/transcode.html -------------------------------------------------------------------------------- /subsonic-web/transcoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/transcoding.php -------------------------------------------------------------------------------- /subsonic-web/translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/translate.php -------------------------------------------------------------------------------- /subsonic-web/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popeen/Booksonic-LegacyServer/HEAD/subsonic-web/version.html --------------------------------------------------------------------------------