From 89c0085e28de24d1093f3996c345c339730a45ba Mon Sep 17 00:00:00 2001 From: Luke Date: Wed, 26 Nov 2014 20:56:14 -0500 Subject: [PATCH] update mac project --- MediaBrowser.Server.Mac.userprefs | 15 +- MediaBrowser.Server.Mac/AppController.cs | 17 +- MediaBrowser.Server.Mac/Info.plist | 6 +- MediaBrowser.Server.Mac/Main.cs | 8 +- .../MediaBrowser.Server.Mac.csproj | 5891 +++++++++-------- .../Resources/appicon.icns | Bin 0 -> 50218 bytes MediaBrowser.Server.Mac/app.config | 9 + .../{touchicon.png => statusicon.png} | Bin 8 files changed, 3003 insertions(+), 2943 deletions(-) create mode 100644 MediaBrowser.Server.Mac/Resources/appicon.icns create mode 100644 MediaBrowser.Server.Mac/app.config rename MediaBrowser.Server.Mac/{touchicon.png => statusicon.png} (100%) diff --git a/MediaBrowser.Server.Mac.userprefs b/MediaBrowser.Server.Mac.userprefs index 233d19c5bd..3a1ead51fb 100644 --- a/MediaBrowser.Server.Mac.userprefs +++ b/MediaBrowser.Server.Mac.userprefs @@ -1,18 +1,19 @@  - + - + - - - - - + + + + + + diff --git a/MediaBrowser.Server.Mac/AppController.cs b/MediaBrowser.Server.Mac/AppController.cs index c500084e24..2da1de5b52 100644 --- a/MediaBrowser.Server.Mac/AppController.cs +++ b/MediaBrowser.Server.Mac/AppController.cs @@ -26,29 +26,30 @@ namespace MediaBrowser.Server.Mac { Instance = this; MainClass.AddDependencies (this); + ConfigurationManager.ConfigurationUpdated += Instance_ConfigurationUpdated; } public override void AwakeFromNib() { var statusItem = NSStatusBar.SystemStatusBar.CreateStatusItem(30); statusItem.Menu = statusMenu; - statusItem.Image = NSImage.ImageNamed("touchicon"); + statusItem.Image = NSImage.ImageNamed("statusicon"); statusItem.HighlightMode = true; - statusItem.Menu.RemoveAllItems (); + statusMenu.RemoveAllItems (); browseMenuItem = new NSMenuItem ("Browse Media Library", "b", delegate { Browse (this); }); - statusItem.Menu.AddItem (browseMenuItem); + statusMenu.AddItem (browseMenuItem); configureMenuItem = new NSMenuItem ("Configure Media Browser", "c", delegate { Configure (this); }); - statusItem.Menu.AddItem (configureMenuItem); + statusMenu.AddItem (configureMenuItem); developerMenuItem = new NSMenuItem ("Developer Resources"); - statusItem.Menu.AddItem (developerMenuItem); + statusMenu.AddItem (developerMenuItem); var developerMenu = new NSMenu (); developerMenuItem.Submenu = developerMenu; @@ -66,12 +67,14 @@ namespace MediaBrowser.Server.Mac communityMenuItem = new NSMenuItem ("Visit Community", "v", delegate { Community (this); }); - statusItem.Menu.AddItem (communityMenuItem); + statusMenu.AddItem (communityMenuItem); quitMenuItem = new NSMenuItem ("Quit", "q", delegate { Quit (this); }); - statusItem.Menu.AddItem (quitMenuItem); + statusMenu.AddItem (quitMenuItem); + + LocalizeText (); } public IServerApplicationHost AppHost{ get; set;} diff --git a/MediaBrowser.Server.Mac/Info.plist b/MediaBrowser.Server.Mac/Info.plist index 44ebb72de8..cc7aa73c13 100644 --- a/MediaBrowser.Server.Mac/Info.plist +++ b/MediaBrowser.Server.Mac/Info.plist @@ -5,13 +5,15 @@ CFBundleIdentifier com.MediaBrowser.MediaBrowser.Server.Mac CFBundleName - MediaBrowser.Server.Mac + Media Browser CFBundleVersion 1 LSMinimumSystemVersion 10.6 LSUIElement 1 + LSMultipleInstancesProhibited + 1 NSMainNibFile MainMenu NSPrincipalClass @@ -20,5 +22,7 @@ public.app-category.video CFBundleDisplayName Media Browser + CFBundleIconFile + appicon diff --git a/MediaBrowser.Server.Mac/Main.cs b/MediaBrowser.Server.Mac/Main.cs index f6c312aebc..83665540f2 100644 --- a/MediaBrowser.Server.Mac/Main.cs +++ b/MediaBrowser.Server.Mac/Main.cs @@ -72,8 +72,9 @@ namespace MediaBrowser.Server.Mac // TODO: Use CommonApplicationData? Will we always have write access? programDataPath = Path.Combine(Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData), "mediabrowser-server"); } - // p5437mav0ABB83l - var resourcesPath = Path.Combine(Path.GetDirectoryName (applicationPath), "Resources"); + + // Within the mac bundle, go uo two levels then down into Resources folder + var resourcesPath = Path.Combine(Path.GetDirectoryName(Path.GetDirectoryName (applicationPath)), "Resources"); return new ServerApplicationPaths(programDataPath, applicationPath, resourcesPath); } @@ -109,9 +110,10 @@ namespace MediaBrowser.Server.Mac var initProgress = new Progress(); var task = _appHost.Init(initProgress); - task = task.ContinueWith(new Action(a => _appHost.RunStartupTasks())); Task.WaitAll(task); + + Task.Run (() => _appHost.RunStartupTasks()); } /// diff --git a/MediaBrowser.Server.Mac/MediaBrowser.Server.Mac.csproj b/MediaBrowser.Server.Mac/MediaBrowser.Server.Mac.csproj index 9197a717cd..b78cfeb8be 100644 --- a/MediaBrowser.Server.Mac/MediaBrowser.Server.Mac.csproj +++ b/MediaBrowser.Server.Mac/MediaBrowser.Server.Mac.csproj @@ -1,2926 +1,2967 @@ - - - - Debug - AnyCPU - {42C0BBD9-55CE-4FC1-8D90-A7348ABAFB23};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {C97B98FA-00D4-4880-88B8-C76017A418AB} - Exe - MediaBrowser.Server.Mac - Resources - MediaBrowser.Server.Mac - ..\MediaBrowser.WebDashboard\dashboard-ui\css\images\favicon.ico - - - - - true - full - false - bin\Debug - DEBUG; - prompt - 4 - false - false - true - false - Mac Developer - false - true - Developer ID Installer - - - full - true - bin\Release - prompt - 4 - false - Full - false - true - false - Developer ID Application - false - true - Developer ID Installer - - - full - true - bin\AppStore - prompt - 4 - false - Full - false - true - 3rd Party Mac Developer Installer - true - 3rd Party Mac Developer Application - false - false - - - - - - - - - - ..\packages\Mono.Posix.4.0.0.0\lib\net40\Mono.Posix.dll - - - - - - - - - - - - AppDelegate.cs - - - - AppController.cs - - - - - - - - - - - - - PreserveNewest - - - PreserveNewest - - - - - - - {7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B} - MediaBrowser.Model - - - {17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2} - MediaBrowser.Controller - - - {B90AB8F2-1BFF-4568-A3FD-2A338A435A75} - MediaBrowser.Server.Startup.Common - - - {9142EEFA-7570-41E1-BFCC-468BB571AF2F} - MediaBrowser.Common - - - {C4D2573A-3FD3-441F-81AF-174AC4CD4E1D} - MediaBrowser.Common.Implementations - - - {2E781478-814D-4A48-9D80-BFF206441A65} - MediaBrowser.Server.Implementations - - - - - - - - False - Dynamic - - - False - Dynamic - - - False - Dynamic - - - False - Dynamic - - - False - Dynamic - - - - - Resources\swagger-ui\index.html - - - Resources\swagger-ui\swagger-ui.js - - - Resources\swagger-ui\swagger-ui.min.js - - - Resources\swagger-ui\css\screen.css - - - Resources\swagger-ui\images\logo_small.png - - - Resources\swagger-ui\images\pet_store_api.png - - - Resources\swagger-ui\images\throbber.gif - - - Resources\swagger-ui\images\wordnik_api.png - - - Resources\swagger-ui\lib\backbone-min.js - - - Resources\swagger-ui\lib\handlebars-1.0.0.js - - - Resources\swagger-ui\lib\highlight.7.3.pack.js - - - Resources\swagger-ui\lib\jquery-1.8.0.min.js - - - Resources\swagger-ui\lib\jquery.ba-bbq.min.js - - - Resources\swagger-ui\lib\jquery.slideto.min.js - - - Resources\swagger-ui\lib\jquery.wiggle.min.js - - - Resources\swagger-ui\lib\shred.bundle.js - - - Resources\swagger-ui\lib\swagger.js - - - Resources\swagger-ui\lib\underscore-min.js - - - Resources\swagger-ui\lib\shred\content.js - - - Resources\dashboard-ui\.DS_Store - - - Resources\dashboard-ui\about.html - - - Resources\dashboard-ui\addplugin.html - - - Resources\dashboard-ui\advanced.html - - - Resources\dashboard-ui\autoorganizelog.html - - - Resources\dashboard-ui\autoorganizetv.html - - - Resources\dashboard-ui\channelitems.html - - - Resources\dashboard-ui\channels.html - - - Resources\dashboard-ui\channelsettings.html - - - Resources\dashboard-ui\channelslatest.html - - - Resources\dashboard-ui\cinemamodeconfiguration.html - - - Resources\dashboard-ui\collections.html - - - Resources\dashboard-ui\connectlogin.html - - - Resources\dashboard-ui\dashboard.html - - - Resources\dashboard-ui\dashboardgeneral.html - - - Resources\dashboard-ui\dashboardsync.html - - - Resources\dashboard-ui\device.html - - - Resources\dashboard-ui\devices.html - - - Resources\dashboard-ui\devicesupload.html - - - Resources\dashboard-ui\dlnaprofile.html - - - Resources\dashboard-ui\dlnaprofiles.html - - - Resources\dashboard-ui\dlnaserversettings.html - - - Resources\dashboard-ui\dlnasettings.html - - - Resources\dashboard-ui\editcollectionitems.html - - - Resources\dashboard-ui\edititemimages.html - - - Resources\dashboard-ui\edititemmetadata.html - - - Resources\dashboard-ui\edititemsubtitles.html - - - Resources\dashboard-ui\encodingsettings.html - - - Resources\dashboard-ui\episodes.html - - - Resources\dashboard-ui\favicon.ico - - - Resources\dashboard-ui\favorites.html - - - Resources\dashboard-ui\forgotpassword.html - - - Resources\dashboard-ui\forgotpasswordpin.html - - - Resources\dashboard-ui\gamegenres.html - - - Resources\dashboard-ui\games.html - - - Resources\dashboard-ui\gamesrecommended.html - - - Resources\dashboard-ui\gamestudios.html - - - Resources\dashboard-ui\gamesystems.html - - - Resources\dashboard-ui\homelatest.html - - - Resources\dashboard-ui\index.html - - - Resources\dashboard-ui\itembynamedetails.html - - - Resources\dashboard-ui\itemdetails.html - - - Resources\dashboard-ui\itemgallery.html - - - Resources\dashboard-ui\itemlist.html - - - Resources\dashboard-ui\library.html - - - Resources\dashboard-ui\librarypathmapping.html - - - Resources\dashboard-ui\librarysettings.html - - - Resources\dashboard-ui\livetvchannel.html - - - Resources\dashboard-ui\livetvchannels.html - - - Resources\dashboard-ui\livetvguide.html - - - Resources\dashboard-ui\livetvnewrecording.html - - - Resources\dashboard-ui\livetvprogram.html - - - Resources\dashboard-ui\livetvrecording.html - - - Resources\dashboard-ui\livetvrecordinglist.html - - - Resources\dashboard-ui\livetvrecordings.html - - - Resources\dashboard-ui\livetvseriestimer.html - - - Resources\dashboard-ui\livetvseriestimers.html - - - Resources\dashboard-ui\livetvsettings.html - - - Resources\dashboard-ui\livetvstatus.html - - - Resources\dashboard-ui\livetvsuggested.html - - - Resources\dashboard-ui\livetvtimer.html - - - Resources\dashboard-ui\livetvtimers.html - - - Resources\dashboard-ui\log.html - - - Resources\dashboard-ui\login.html - - - Resources\dashboard-ui\metadata.html - - - Resources\dashboard-ui\metadataadvanced.html - - - Resources\dashboard-ui\metadataimages.html - - - Resources\dashboard-ui\metadatakodi.html - - - Resources\dashboard-ui\metadatasubtitles.html - - - Resources\dashboard-ui\moviegenres.html - - - Resources\dashboard-ui\moviepeople.html - - - Resources\dashboard-ui\movies.html - - - Resources\dashboard-ui\movieslatest.html - - - Resources\dashboard-ui\moviesrecommended.html - - - Resources\dashboard-ui\moviestudios.html - - - Resources\dashboard-ui\movietrailers.html - - - Resources\dashboard-ui\musicalbumartists.html - - - Resources\dashboard-ui\musicalbums.html - - - Resources\dashboard-ui\musicartists.html - - - Resources\dashboard-ui\musicgenres.html - - - Resources\dashboard-ui\musicrecommended.html - - - Resources\dashboard-ui\musicvideos.html - - - Resources\dashboard-ui\mypreferencesdisplay.html - - - Resources\dashboard-ui\mypreferenceslanguages.html - - - Resources\dashboard-ui\mypreferenceswebclient.html - - - Resources\dashboard-ui\myprofile.html - - - Resources\dashboard-ui\notificationlist.html - - - Resources\dashboard-ui\notificationsetting.html - - - Resources\dashboard-ui\notificationsettings.html - - - Resources\dashboard-ui\nowplaying.html - - - Resources\dashboard-ui\playbackconfiguration.html - - - Resources\dashboard-ui\playlist.html - - - Resources\dashboard-ui\playlistedit.html - - - Resources\dashboard-ui\playlists.html - - - Resources\dashboard-ui\plugincatalog.html - - - Resources\dashboard-ui\plugins.html - - - Resources\dashboard-ui\reports.html - - - Resources\dashboard-ui\scheduledtask.html - - - Resources\dashboard-ui\scheduledtasks.html - - - Resources\dashboard-ui\selectserver.html - - - Resources\dashboard-ui\serversecurity.html - - - Resources\dashboard-ui\songs.html - - - Resources\dashboard-ui\support.html - - - Resources\dashboard-ui\supporter.html - - - Resources\dashboard-ui\supporterkey.html - - - Resources\dashboard-ui\tvgenres.html - - - Resources\dashboard-ui\tvlatest.html - - - Resources\dashboard-ui\tvpeople.html - - - Resources\dashboard-ui\tvrecommended.html - - - Resources\dashboard-ui\tvshows.html - - - Resources\dashboard-ui\tvstudios.html - - - Resources\dashboard-ui\tvupcoming.html - - - Resources\dashboard-ui\useredit.html - - - Resources\dashboard-ui\userlibraryaccess.html - - - Resources\dashboard-ui\usernew.html - - - Resources\dashboard-ui\userparentalcontrol.html - - - Resources\dashboard-ui\userpassword.html - - - Resources\dashboard-ui\userprofiles.html - - - Resources\dashboard-ui\wizardfinish.html - - - Resources\dashboard-ui\wizardlibrary.html - - - Resources\dashboard-ui\wizardservice.html - - - Resources\dashboard-ui\wizardsettings.html - - - Resources\dashboard-ui\wizardstart.html - - - Resources\dashboard-ui\wizarduser.html - - - Resources\dashboard-ui\css\.DS_Store - - - Resources\dashboard-ui\css\card.css - - - Resources\dashboard-ui\css\chromecast.css - - - Resources\dashboard-ui\css\detailtable.css - - - Resources\dashboard-ui\css\icons.css - - - Resources\dashboard-ui\css\librarybrowser.css - - - Resources\dashboard-ui\css\librarymenu.css - - - Resources\dashboard-ui\css\livetv.css - - - Resources\dashboard-ui\css\mediaplayer-video.css - - - Resources\dashboard-ui\css\mediaplayer.css - - - Resources\dashboard-ui\css\metadataeditor.css - - - Resources\dashboard-ui\css\notifications.css - - - Resources\dashboard-ui\css\nowplaying.css - - - Resources\dashboard-ui\css\pluginupdates.css - - - Resources\dashboard-ui\css\remotecontrol.css - - - Resources\dashboard-ui\css\search.css - - - Resources\dashboard-ui\css\site.css - - - Resources\dashboard-ui\css\tileitem.css - - - Resources\dashboard-ui\css\userimage.css - - - Resources\dashboard-ui\css\fonts\RobotoBold.woff - - - Resources\dashboard-ui\css\fonts\RobotoLight.woff - - - Resources\dashboard-ui\css\fonts\RobotoMedium.woff - - - Resources\dashboard-ui\css\fonts\RobotoRegular.woff - - - Resources\dashboard-ui\css\fonts\RobotoThin.woff - - - Resources\dashboard-ui\css\fonts\mblogo.woff - - - Resources\dashboard-ui\css\images\checkmarkblack.png - - - Resources\dashboard-ui\css\images\checkmarkgreen.png - - - Resources\dashboard-ui\css\images\currentuserdefaultwhite.png - - - Resources\dashboard-ui\css\images\favicon.ico - - - Resources\dashboard-ui\css\images\fresh.png - - - Resources\dashboard-ui\css\images\headersearch.png - - - Resources\dashboard-ui\css\images\iossplash.png - - - Resources\dashboard-ui\css\images\logindefault.png - - - Resources\dashboard-ui\css\images\mblogoicon.png - - - Resources\dashboard-ui\css\images\mblogotextblack.png - - - Resources\dashboard-ui\css\images\mblogotextwhite.png - - - Resources\dashboard-ui\css\images\rightarrow.png - - - Resources\dashboard-ui\css\images\rotten.png - - - Resources\dashboard-ui\css\images\server.png - - - Resources\dashboard-ui\css\images\stars.png - - - Resources\dashboard-ui\css\images\touchicon.png - - - Resources\dashboard-ui\css\images\touchicon114.png - - - Resources\dashboard-ui\css\images\touchicon72.png - - - Resources\dashboard-ui\css\images\userflyoutdefault.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_disabled_holo_dark.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_disabled_holo_light.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_off_holo_dark.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_off_holo_light.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_0_holo_dark.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_0_holo_light.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_1_holo_dark.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_1_holo_light.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_2_holo_dark.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_2_holo_light.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_holo_dark.png - - - Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_holo_light.png - - - Resources\dashboard-ui\css\images\chromecast\ic_notification_media_route.png - - - Resources\dashboard-ui\css\images\clients\amazon.png - - - Resources\dashboard-ui\css\images\clients\android.png - - - Resources\dashboard-ui\css\images\clients\chrome.png - - - Resources\dashboard-ui\css\images\clients\chrome_companion.png - - - Resources\dashboard-ui\css\images\clients\dlna.png - - - Resources\dashboard-ui\css\images\clients\firefox.png - - - Resources\dashboard-ui\css\images\clients\html5.png - - - Resources\dashboard-ui\css\images\clients\ie.png - - - Resources\dashboard-ui\css\images\clients\ios.png - - - Resources\dashboard-ui\css\images\clients\kodi.png - - - Resources\dashboard-ui\css\images\clients\mb.png - - - Resources\dashboard-ui\css\images\clients\mbc.png - - - Resources\dashboard-ui\css\images\clients\mbkinect.png - - - Resources\dashboard-ui\css\images\clients\mediaportal.png - - - Resources\dashboard-ui\css\images\clients\nuvue.png - - - Resources\dashboard-ui\css\images\clients\playstore.png - - - Resources\dashboard-ui\css\images\clients\roku.jpg - - - Resources\dashboard-ui\css\images\clients\safari.png - - - Resources\dashboard-ui\css\images\clients\windowsphone.png - - - Resources\dashboard-ui\css\images\clients\windowsrt.png - - - Resources\dashboard-ui\css\images\editor\lock.png - - - Resources\dashboard-ui\css\images\editor\missing.png - - - Resources\dashboard-ui\css\images\editor\missingbackdrop.png - - - Resources\dashboard-ui\css\images\editor\missinglogo.png - - - Resources\dashboard-ui\css\images\editor\missingprimaryimage.png - - - Resources\dashboard-ui\css\images\editor\missingtrailer.png - - - Resources\dashboard-ui\css\images\icons\audiocd.png - - - Resources\dashboard-ui\css\images\icons\ellipsis-v.png - - - Resources\dashboard-ui\css\images\icons\expand.png - - - Resources\dashboard-ui\css\images\icons\filter.png - - - Resources\dashboard-ui\css\images\icons\mute.png - - - Resources\dashboard-ui\css\images\icons\nexttrack.png - - - Resources\dashboard-ui\css\images\icons\pause.png - - - Resources\dashboard-ui\css\images\icons\play.png - - - Resources\dashboard-ui\css\images\icons\previoustrack.png - - - Resources\dashboard-ui\css\images\icons\remote.png - - - Resources\dashboard-ui\css\images\icons\sort.png - - - Resources\dashboard-ui\css\images\icons\stop.png - - - Resources\dashboard-ui\css\images\icons\subtitles.png - - - Resources\dashboard-ui\css\images\icons\volumedown.png - - - Resources\dashboard-ui\css\images\icons\volumeup.png - - - Resources\dashboard-ui\css\images\icons\wireless.png - - - Resources\dashboard-ui\css\images\items\detail\audio.png - - - Resources\dashboard-ui\css\images\items\detail\game.png - - - Resources\dashboard-ui\css\images\items\detail\person.png - - - Resources\dashboard-ui\css\images\items\detail\tv.png - - - Resources\dashboard-ui\css\images\items\detail\video.png - - - Resources\dashboard-ui\css\images\items\folders\books.png - - - Resources\dashboard-ui\css\images\items\folders\channels.png - - - Resources\dashboard-ui\css\images\items\folders\edit.png - - - Resources\dashboard-ui\css\images\items\folders\folder.png - - - Resources\dashboard-ui\css\images\items\folders\games.png - - - Resources\dashboard-ui\css\images\items\folders\home.png - - - Resources\dashboard-ui\css\images\items\folders\homevideos.png - - - Resources\dashboard-ui\css\images\items\folders\movies.png - - - Resources\dashboard-ui\css\images\items\folders\music.png - - - Resources\dashboard-ui\css\images\items\folders\musicvideos.png - - - Resources\dashboard-ui\css\images\items\folders\photos.png - - - Resources\dashboard-ui\css\images\items\folders\report.png - - - Resources\dashboard-ui\css\images\items\folders\settings.png - - - Resources\dashboard-ui\css\images\items\folders\tv.png - - - Resources\dashboard-ui\css\images\items\list\audio.png - - - Resources\dashboard-ui\css\images\items\list\audiocollection.png - - - Resources\dashboard-ui\css\images\items\list\chapter.png - - - Resources\dashboard-ui\css\images\items\list\collection.png - - - Resources\dashboard-ui\css\images\items\list\game.png - - - Resources\dashboard-ui\css\images\items\list\gamecollection.png - - - Resources\dashboard-ui\css\images\items\list\person.png - - - Resources\dashboard-ui\css\images\items\list\remotesearch.png - - - Resources\dashboard-ui\css\images\items\list\video.png - - - Resources\dashboard-ui\css\images\items\searchhintsv2\film.png - - - Resources\dashboard-ui\css\images\items\searchhintsv2\game.png - - - Resources\dashboard-ui\css\images\items\searchhintsv2\music.png - - - Resources\dashboard-ui\css\images\items\searchhintsv2\person.png - - - Resources\dashboard-ui\css\images\items\searchhintsv2\tv.png - - - Resources\dashboard-ui\css\images\media\chapterflyout.png - - - Resources\dashboard-ui\css\images\media\pause.png - - - Resources\dashboard-ui\css\images\media\play.png - - - Resources\dashboard-ui\css\images\notifications\cancelled.png - - - Resources\dashboard-ui\css\images\notifications\done.png - - - Resources\dashboard-ui\css\images\notifications\download.png - - - Resources\dashboard-ui\css\images\notifications\error.png - - - Resources\dashboard-ui\css\images\notifications\info.png - - - Resources\dashboard-ui\css\images\supporter\donatepaypal.png - - - Resources\dashboard-ui\css\images\supporter\nonsupporterbadge.png - - - Resources\dashboard-ui\css\images\supporter\premiumflag.png - - - Resources\dashboard-ui\css\images\supporter\registerpaypal.png - - - Resources\dashboard-ui\css\images\supporter\supporterbadge.png - - - Resources\dashboard-ui\css\images\supporter\supporterflag.png - - - Resources\dashboard-ui\css\images\tour\enjoy.jpg - - - Resources\dashboard-ui\css\images\tour\dashboard\chapters.png - - - Resources\dashboard-ui\css\images\tour\dashboard\cinemamode.png - - - Resources\dashboard-ui\css\images\tour\dashboard\dashboard.png - - - Resources\dashboard-ui\css\images\tour\dashboard\mobile.png - - - Resources\dashboard-ui\css\images\tour\dashboard\notifications.png - - - Resources\dashboard-ui\css\images\tour\dashboard\plugins.png - - - Resources\dashboard-ui\css\images\tour\dashboard\scheduledtasks.png - - - Resources\dashboard-ui\css\images\tour\dashboard\subtitles.png - - - Resources\dashboard-ui\css\images\tour\dashboard\users.png - - - Resources\dashboard-ui\css\images\tour\web\tourcollections.jpg - - - Resources\dashboard-ui\css\images\tour\web\tourcontent.jpg - - - Resources\dashboard-ui\css\images\tour\web\toureditor.png - - - Resources\dashboard-ui\css\images\tour\web\tourmobile1.jpg - - - Resources\dashboard-ui\css\images\tour\web\tourmobile2.png - - - Resources\dashboard-ui\css\images\tour\web\tourmouseover.jpg - - - Resources\dashboard-ui\css\images\tour\web\tourmovies.jpg - - - Resources\dashboard-ui\css\images\tour\web\tourplaylist.png - - - Resources\dashboard-ui\css\images\tour\web\tourtaphold.jpg - - - Resources\dashboard-ui\css\images\tour\web\tourusersettings1.png - - - Resources\dashboard-ui\css\images\tour\web\tourusersettings2.png - - - Resources\dashboard-ui\css\images\tour\web\tourusersettings3.png - - - Resources\dashboard-ui\css\images\tour\web\tourusersettings4.png - - - Resources\dashboard-ui\css\images\userdata\administrator.png - - - Resources\dashboard-ui\css\images\userdata\checkedoff.png - - - Resources\dashboard-ui\css\images\userdata\checkedon.png - - - Resources\dashboard-ui\css\images\userdata\heart_off.png - - - Resources\dashboard-ui\css\images\userdata\heart_on.png - - - Resources\dashboard-ui\css\images\userdata\password.png - - - Resources\dashboard-ui\css\images\userdata\thumbs_down_off.png - - - Resources\dashboard-ui\css\images\userdata\thumbs_down_on.png - - - Resources\dashboard-ui\css\images\userdata\thumbs_up_off.png - - - Resources\dashboard-ui\css\images\userdata\thumbs_up_on.png - - - Resources\dashboard-ui\files\dummy.mp4 - - - Resources\dashboard-ui\scripts\aboutpage.js - - - Resources\dashboard-ui\scripts\addpluginpage.js - - - Resources\dashboard-ui\scripts\advancedconfigurationpage.js - - - Resources\dashboard-ui\scripts\alphapicker.js - - - Resources\dashboard-ui\scripts\autoorganizelog.js - - - Resources\dashboard-ui\scripts\autoorganizetv.js - - - Resources\dashboard-ui\scripts\backdrops.js - - - Resources\dashboard-ui\scripts\channelitems.js - - - Resources\dashboard-ui\scripts\channels.js - - - Resources\dashboard-ui\scripts\channelsettings.js - - - Resources\dashboard-ui\scripts\channelslatest.js - - - Resources\dashboard-ui\scripts\chromecast.js - - - Resources\dashboard-ui\scripts\cinemamodeconfiguration.js - - - Resources\dashboard-ui\scripts\connectlogin.js - - - Resources\dashboard-ui\scripts\dashboardgeneral.js - - - Resources\dashboard-ui\scripts\dashboardpage.js - - - Resources\dashboard-ui\scripts\dashboardsync.js - - - Resources\dashboard-ui\scripts\device.js - - - Resources\dashboard-ui\scripts\devices.js - - - Resources\dashboard-ui\scripts\devicesupload.js - - - Resources\dashboard-ui\scripts\directorybrowser.js - - - Resources\dashboard-ui\scripts\dlnaprofile.js - - - Resources\dashboard-ui\scripts\dlnaprofiles.js - - - Resources\dashboard-ui\scripts\dlnaserversettings.js - - - Resources\dashboard-ui\scripts\dlnasettings.js - - - Resources\dashboard-ui\scripts\editcollectionitems.js - - - Resources\dashboard-ui\scripts\edititemimages.js - - - Resources\dashboard-ui\scripts\edititemmetadata.js - - - Resources\dashboard-ui\scripts\edititemsubtitles.js - - - Resources\dashboard-ui\scripts\editorsidebar.js - - - Resources\dashboard-ui\scripts\encodingsettings.js - - - Resources\dashboard-ui\scripts\episodes.js - - - Resources\dashboard-ui\scripts\extensions.js - - - Resources\dashboard-ui\scripts\externalplayer.js - - - Resources\dashboard-ui\scripts\favorites.js - - - Resources\dashboard-ui\scripts\forgotpassword.js - - - Resources\dashboard-ui\scripts\forgotpasswordpin.js - - - Resources\dashboard-ui\scripts\gamegenrepage.js - - - Resources\dashboard-ui\scripts\gamespage.js - - - Resources\dashboard-ui\scripts\gamesrecommendedpage.js - - - Resources\dashboard-ui\scripts\gamestudiospage.js - - - Resources\dashboard-ui\scripts\gamesystemspage.js - - - Resources\dashboard-ui\scripts\homelatest.js - - - Resources\dashboard-ui\scripts\indexpage.js - - - Resources\dashboard-ui\scripts\itembynamedetailpage.js - - - Resources\dashboard-ui\scripts\itemdetailpage.js - - - Resources\dashboard-ui\scripts\itemgallery.js - - - Resources\dashboard-ui\scripts\itemlistpage.js - - - Resources\dashboard-ui\scripts\librarybrowser.js - - - Resources\dashboard-ui\scripts\librarylist.js - - - Resources\dashboard-ui\scripts\librarymenu.js - - - Resources\dashboard-ui\scripts\librarypathmapping.js - - - Resources\dashboard-ui\scripts\librarysettings.js - - - Resources\dashboard-ui\scripts\livetvchannel.js - - - Resources\dashboard-ui\scripts\livetvchannels.js - - - Resources\dashboard-ui\scripts\livetvguide.js - - - Resources\dashboard-ui\scripts\livetvnewrecording.js - - - Resources\dashboard-ui\scripts\livetvprogram.js - - - Resources\dashboard-ui\scripts\livetvrecording.js - - - Resources\dashboard-ui\scripts\livetvrecordinglist.js - - - Resources\dashboard-ui\scripts\livetvrecordings.js - - - Resources\dashboard-ui\scripts\livetvseriestimer.js - - - Resources\dashboard-ui\scripts\livetvseriestimers.js - - - Resources\dashboard-ui\scripts\livetvsettings.js - - - Resources\dashboard-ui\scripts\livetvstatus.js - - - Resources\dashboard-ui\scripts\livetvsuggested.js - - - Resources\dashboard-ui\scripts\livetvtimer.js - - - Resources\dashboard-ui\scripts\livetvtimers.js - - - Resources\dashboard-ui\scripts\loginpage.js - - - Resources\dashboard-ui\scripts\logpage.js - - - Resources\dashboard-ui\scripts\mediacontroller.js - - - Resources\dashboard-ui\scripts\medialibrarypage.js - - - Resources\dashboard-ui\scripts\mediaplayer-video.js - - - Resources\dashboard-ui\scripts\mediaplayer.js - - - Resources\dashboard-ui\scripts\metadataadvanced.js - - - Resources\dashboard-ui\scripts\metadataconfigurationpage.js - - - Resources\dashboard-ui\scripts\metadataimagespage.js - - - Resources\dashboard-ui\scripts\metadatakodi.js - - - Resources\dashboard-ui\scripts\metadatasubtitles.js - - - Resources\dashboard-ui\scripts\moviecollections.js - - - Resources\dashboard-ui\scripts\moviegenres.js - - - Resources\dashboard-ui\scripts\moviepeople.js - - - Resources\dashboard-ui\scripts\movies.js - - - Resources\dashboard-ui\scripts\movieslatest.js - - - Resources\dashboard-ui\scripts\moviesrecommended.js - - - Resources\dashboard-ui\scripts\moviestudios.js - - - Resources\dashboard-ui\scripts\movietrailers.js - - - Resources\dashboard-ui\scripts\musicalbumartists.js - - - Resources\dashboard-ui\scripts\musicalbums.js - - - Resources\dashboard-ui\scripts\musicartists.js - - - Resources\dashboard-ui\scripts\musicgenres.js - - - Resources\dashboard-ui\scripts\musicrecommended.js - - - Resources\dashboard-ui\scripts\musicvideos.js - - - Resources\dashboard-ui\scripts\mypreferencesdisplay.js - - - Resources\dashboard-ui\scripts\mypreferenceslanguages.js - - - Resources\dashboard-ui\scripts\mypreferenceswebclient.js - - - Resources\dashboard-ui\scripts\myprofile.js - - - Resources\dashboard-ui\scripts\notificationlist.js - - - Resources\dashboard-ui\scripts\notifications.js - - - Resources\dashboard-ui\scripts\notificationsetting.js - - - Resources\dashboard-ui\scripts\notificationsettings.js - - - Resources\dashboard-ui\scripts\nowplayingbar.js - - - Resources\dashboard-ui\scripts\nowplayingpage.js - - - Resources\dashboard-ui\scripts\playbackconfiguration.js - - - Resources\dashboard-ui\scripts\playlist.js - - - Resources\dashboard-ui\scripts\playlistedit.js - - - Resources\dashboard-ui\scripts\playlistmanager.js - - - Resources\dashboard-ui\scripts\playlists.js - - - Resources\dashboard-ui\scripts\plugincatalogpage.js - - - Resources\dashboard-ui\scripts\pluginspage.js - - - Resources\dashboard-ui\scripts\ratingdialog.js - - - Resources\dashboard-ui\scripts\remotecontrol.js - - - Resources\dashboard-ui\scripts\reports.js - - - Resources\dashboard-ui\scripts\scheduledtaskpage.js - - - Resources\dashboard-ui\scripts\scheduledtaskspage.js - - - Resources\dashboard-ui\scripts\search.js - - - Resources\dashboard-ui\scripts\selectserver.js - - - Resources\dashboard-ui\scripts\serversecurity.js - - - Resources\dashboard-ui\scripts\site.js - - - Resources\dashboard-ui\scripts\songs.js - - - Resources\dashboard-ui\scripts\supporterkeypage.js - - - Resources\dashboard-ui\scripts\supporterpage.js - - - Resources\dashboard-ui\scripts\sync.js - - - Resources\dashboard-ui\scripts\thememediaplayer.js - - - Resources\dashboard-ui\scripts\tvgenres.js - - - Resources\dashboard-ui\scripts\tvlatest.js - - - Resources\dashboard-ui\scripts\tvpeople.js - - - Resources\dashboard-ui\scripts\tvrecommended.js - - - Resources\dashboard-ui\scripts\tvshows.js - - - Resources\dashboard-ui\scripts\tvstudios.js - - - Resources\dashboard-ui\scripts\tvupcoming.js - - - Resources\dashboard-ui\scripts\useredit.js - - - Resources\dashboard-ui\scripts\userlibraryaccess.js - - - Resources\dashboard-ui\scripts\usernew.js - - - Resources\dashboard-ui\scripts\userparentalcontrol.js - - - Resources\dashboard-ui\scripts\userpassword.js - - - Resources\dashboard-ui\scripts\userprofilespage.js - - - Resources\dashboard-ui\scripts\wizardfinishpage.js - - - Resources\dashboard-ui\scripts\wizardservice.js - - - Resources\dashboard-ui\scripts\wizardsettings.js - - - Resources\dashboard-ui\scripts\wizardstartpage.js - - - Resources\dashboard-ui\scripts\wizarduserpage.js - - - Resources\dashboard-ui\thirdparty\browser.js - - - Resources\dashboard-ui\thirdparty\cast_sender.js - - - Resources\dashboard-ui\thirdparty\jquery-2.1.1.min.js - - - Resources\dashboard-ui\thirdparty\jquery.unveil-custom.js - - - Resources\dashboard-ui\thirdparty\apiclient\connectionmanager.js - - - Resources\dashboard-ui\thirdparty\apiclient\connectservice.js - - - Resources\dashboard-ui\thirdparty\apiclient\credentials.js - - - Resources\dashboard-ui\thirdparty\apiclient\device.js - - - Resources\dashboard-ui\thirdparty\apiclient\md5.js - - - Resources\dashboard-ui\thirdparty\apiclient\mediabrowser.apiclient.js - - - Resources\dashboard-ui\thirdparty\apiclient\network.js - - - Resources\dashboard-ui\thirdparty\apiclient\sha1.js - - - Resources\dashboard-ui\thirdparty\apiclient\store.js - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.3.min.css - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.3.min.js - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.3.min.map - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.4.min.css - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.4.min.js - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.4.min.map - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\ajax-loader.gif - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\action-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\action-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\alert-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\alert-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\audio-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\audio-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\back-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\back-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bars-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bars-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bullets-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bullets-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\calendar-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\calendar-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\camera-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\camera-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-d-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-d-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-u-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-u-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\check-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\check-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\clock-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\clock-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\cloud-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\cloud-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\comment-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\comment-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\delete-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\delete-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\edit-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\edit-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\eye-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\eye-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forbidden-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forbidden-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forward-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forward-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\gear-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\gear-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\grid-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\grid-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\heart-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\heart-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\home-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\home-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\info-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\info-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\location-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\location-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\lock-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\lock-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\mail-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\mail-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\minus-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\minus-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\navigation-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\navigation-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\phone-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\phone-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\plus-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\plus-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\power-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\power-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\recycle-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\recycle-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\refresh-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\refresh-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\search-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\search-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\shop-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\shop-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\star-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\star-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\tag-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\tag-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\user-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\user-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\video-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\video-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\action-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\action-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\alert-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\alert-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\audio-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\audio-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\back-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\back-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bars-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bars-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bullets-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bullets-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\calendar-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\calendar-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\camera-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\camera-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-d-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-d-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-u-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-u-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\check-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\check-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\clock-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\clock-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\cloud-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\cloud-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\comment-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\comment-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\delete-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\delete-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\edit-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\edit-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\eye-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\eye-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forbidden-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forbidden-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forward-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forward-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\gear-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\gear-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\grid-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\grid-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\heart-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\heart-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\home-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\home-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\info-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\info-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\location-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\location-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\lock-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\lock-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\mail-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\mail-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\minus-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\minus-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\navigation-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\navigation-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\phone-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\phone-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\plus-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\plus-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\power-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\power-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\recycle-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\recycle-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\refresh-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\refresh-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\search-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\search-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\shop-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\shop-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\star-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\star-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\tag-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\tag-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\user-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\user-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\video-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\video-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.css - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.js - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.map - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\ajax-loader.gif - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\action-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\action-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\alert-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\alert-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\audio-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\audio-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\back-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\back-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bars-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bars-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bullets-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bullets-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\calendar-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\calendar-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\camera-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\camera-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-d-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-d-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-l-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-l-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-r-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-r-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-u-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-u-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\check-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\check-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\clock-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\clock-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\cloud-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\cloud-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\comment-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\comment-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\delete-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\delete-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\edit-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\edit-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\eye-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\eye-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forbidden-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forbidden-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forward-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forward-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\gear-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\gear-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\grid-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\grid-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\heart-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\heart-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\home-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\home-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\info-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\info-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\location-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\location-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\lock-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\lock-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\mail-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\mail-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\minus-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\minus-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\navigation-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\navigation-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\phone-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\phone-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\plus-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\plus-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\power-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\power-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\recycle-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\recycle-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\refresh-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\refresh-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\search-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\search-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\shop-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\shop-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\star-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\star-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\tag-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\tag-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\user-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\user-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\video-black.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\video-white.png - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\action-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\action-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\alert-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\alert-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\audio-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\audio-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\back-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\back-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bars-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bars-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bullets-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bullets-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\calendar-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\calendar-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\camera-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\camera-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-d-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-d-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-l-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-l-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-r-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-r-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-u-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-u-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\check-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\check-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\clock-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\clock-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\cloud-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\cloud-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\comment-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\comment-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\delete-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\delete-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\edit-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\edit-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\eye-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\eye-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forbidden-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forbidden-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forward-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forward-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\gear-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\gear-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\grid-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\grid-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\heart-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\heart-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\home-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\home-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\info-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\info-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\location-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\location-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\lock-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\lock-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\mail-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\mail-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\minus-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\minus-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\navigation-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\navigation-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\phone-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\phone-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\plus-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\plus-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\power-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\power-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\recycle-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\recycle-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\refresh-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\refresh-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\search-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\search-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\shop-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\shop-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\star-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\star-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\tag-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\tag-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\user-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\user-white.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\video-black.svg - - - Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\video-white.svg - - - Resources\dashboard-ui\thirdparty\jstree1.0\jquery.jstree.js - - - Resources\dashboard-ui\thirdparty\jstree1.0\jquery.jstree.min.js - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\bg.jpg - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\d.png - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\dot_for_ie.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\style.css - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\throbber.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\d.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\d.png - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\dot_for_ie.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\style.css - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\throbber.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\d.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\d.png - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\style.css - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\throbber.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\d.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\d.png - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\dots.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\style.css - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\throbber.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\d.gif - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\d.png - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\style.css - - - Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\throbber.gif - - - Resources\dashboard-ui\thirdparty\swipebox-master\css\swipebox.css - - - Resources\dashboard-ui\thirdparty\swipebox-master\css\swipebox.min.css - - - Resources\dashboard-ui\thirdparty\swipebox-master\img\icons.png - - - Resources\dashboard-ui\thirdparty\swipebox-master\img\icons.svg - - - Resources\dashboard-ui\thirdparty\swipebox-master\img\loader.gif - - - Resources\dashboard-ui\thirdparty\swipebox-master\js\jquery.swipebox.js - - - Resources\dashboard-ui\thirdparty\swipebox-master\js\jquery.swipebox.min.js - - + + + + Debug + AnyCPU + {42C0BBD9-55CE-4FC1-8D90-A7348ABAFB23};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {C97B98FA-00D4-4880-88B8-C76017A418AB} + Exe + MediaBrowser.Server.Mac + Resources + MediaBrowser.Server.Mac + ..\MediaBrowser.WebDashboard\dashboard-ui\css\images\favicon.ico + + + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + false + false + true + false + Mac Developer + false + true + Developer ID Installer + + + full + true + bin\Release + prompt + 4 + false + Full + false + true + false + Developer ID Application + false + true + Developer ID Installer + + + full + true + bin\AppStore + prompt + 4 + false + Full + false + true + 3rd Party Mac Developer Installer + true + 3rd Party Mac Developer Application + false + false + + + + + + + + + + ..\packages\Mono.Posix.4.0.0.0\lib\net40\Mono.Posix.dll + + + + + + + + + + + + AppDelegate.cs + + + + AppController.cs + + + + + + + SharedVersion.cs + + + + + + + + + PreserveNewest + + + PreserveNewest + + + + + + + + {7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B} + MediaBrowser.Model + + + {17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2} + MediaBrowser.Controller + + + {B90AB8F2-1BFF-4568-A3FD-2A338A435A75} + MediaBrowser.Server.Startup.Common + + + {9142EEFA-7570-41E1-BFCC-468BB571AF2F} + MediaBrowser.Common + + + {C4D2573A-3FD3-441F-81AF-174AC4CD4E1D} + MediaBrowser.Common.Implementations + + + {2E781478-814D-4A48-9D80-BFF206441A65} + MediaBrowser.Server.Implementations + + + {734098EB-6DC1-4DD0-A1CA-3140DCD2737C} + MediaBrowser.Dlna + + + {7EF9F3E0-697D-42F3-A08F-19DEB5F84392} + MediaBrowser.LocalMetadata + + + {0BD82FA6-EB8A-4452-8AF5-74F9C3849451} + MediaBrowser.MediaEncoding + + + {6E4145E4-C6D4-4E4D-94F2-87188DB6E239} + MediaBrowser.MediaInfo + + + {442B5058-DCAF-4263-BB6A-F21E31120A1B} + MediaBrowser.Providers + + + {5624B7B5-B5A7-41D8-9F10-CC5611109619} + MediaBrowser.WebDashboard + + + {23499896-B135-4527-8574-C26E926EA99E} + MediaBrowser.XbmcMetadata + + + {4A4402D4-E910-443B-B8FC-2C18286A2CA0} + OpenSubtitlesHandler + + + {4FD51AC5-2C16-4308-A993-C3A84F3B4582} + MediaBrowser.Api + + + + + + + + False + Dynamic + + + False + Dynamic + + + False + Dynamic + + + False + Dynamic + + + False + Dynamic + + + + + Resources\swagger-ui\index.html + + + Resources\swagger-ui\swagger-ui.js + + + Resources\swagger-ui\swagger-ui.min.js + + + Resources\swagger-ui\css\screen.css + + + Resources\swagger-ui\images\logo_small.png + + + Resources\swagger-ui\images\pet_store_api.png + + + Resources\swagger-ui\images\throbber.gif + + + Resources\swagger-ui\images\wordnik_api.png + + + Resources\swagger-ui\lib\backbone-min.js + + + Resources\swagger-ui\lib\handlebars-1.0.0.js + + + Resources\swagger-ui\lib\highlight.7.3.pack.js + + + Resources\swagger-ui\lib\jquery-1.8.0.min.js + + + Resources\swagger-ui\lib\jquery.ba-bbq.min.js + + + Resources\swagger-ui\lib\jquery.slideto.min.js + + + Resources\swagger-ui\lib\jquery.wiggle.min.js + + + Resources\swagger-ui\lib\shred.bundle.js + + + Resources\swagger-ui\lib\swagger.js + + + Resources\swagger-ui\lib\underscore-min.js + + + Resources\swagger-ui\lib\shred\content.js + + + Resources\dashboard-ui\.DS_Store + + + Resources\dashboard-ui\about.html + + + Resources\dashboard-ui\addplugin.html + + + Resources\dashboard-ui\advanced.html + + + Resources\dashboard-ui\autoorganizelog.html + + + Resources\dashboard-ui\autoorganizetv.html + + + Resources\dashboard-ui\channelitems.html + + + Resources\dashboard-ui\channels.html + + + Resources\dashboard-ui\channelsettings.html + + + Resources\dashboard-ui\channelslatest.html + + + Resources\dashboard-ui\cinemamodeconfiguration.html + + + Resources\dashboard-ui\collections.html + + + Resources\dashboard-ui\connectlogin.html + + + Resources\dashboard-ui\dashboard.html + + + Resources\dashboard-ui\dashboardgeneral.html + + + Resources\dashboard-ui\dashboardsync.html + + + Resources\dashboard-ui\device.html + + + Resources\dashboard-ui\devices.html + + + Resources\dashboard-ui\devicesupload.html + + + Resources\dashboard-ui\dlnaprofile.html + + + Resources\dashboard-ui\dlnaprofiles.html + + + Resources\dashboard-ui\dlnaserversettings.html + + + Resources\dashboard-ui\dlnasettings.html + + + Resources\dashboard-ui\editcollectionitems.html + + + Resources\dashboard-ui\edititemimages.html + + + Resources\dashboard-ui\edititemmetadata.html + + + Resources\dashboard-ui\edititemsubtitles.html + + + Resources\dashboard-ui\encodingsettings.html + + + Resources\dashboard-ui\episodes.html + + + Resources\dashboard-ui\favicon.ico + + + Resources\dashboard-ui\favorites.html + + + Resources\dashboard-ui\forgotpassword.html + + + Resources\dashboard-ui\forgotpasswordpin.html + + + Resources\dashboard-ui\gamegenres.html + + + Resources\dashboard-ui\games.html + + + Resources\dashboard-ui\gamesrecommended.html + + + Resources\dashboard-ui\gamestudios.html + + + Resources\dashboard-ui\gamesystems.html + + + Resources\dashboard-ui\homelatest.html + + + Resources\dashboard-ui\index.html + + + Resources\dashboard-ui\itembynamedetails.html + + + Resources\dashboard-ui\itemdetails.html + + + Resources\dashboard-ui\itemgallery.html + + + Resources\dashboard-ui\itemlist.html + + + Resources\dashboard-ui\library.html + + + Resources\dashboard-ui\librarypathmapping.html + + + Resources\dashboard-ui\librarysettings.html + + + Resources\dashboard-ui\livetvchannel.html + + + Resources\dashboard-ui\livetvchannels.html + + + Resources\dashboard-ui\livetvguide.html + + + Resources\dashboard-ui\livetvnewrecording.html + + + Resources\dashboard-ui\livetvprogram.html + + + Resources\dashboard-ui\livetvrecording.html + + + Resources\dashboard-ui\livetvrecordinglist.html + + + Resources\dashboard-ui\livetvrecordings.html + + + Resources\dashboard-ui\livetvseriestimer.html + + + Resources\dashboard-ui\livetvseriestimers.html + + + Resources\dashboard-ui\livetvsettings.html + + + Resources\dashboard-ui\livetvstatus.html + + + Resources\dashboard-ui\livetvsuggested.html + + + Resources\dashboard-ui\livetvtimer.html + + + Resources\dashboard-ui\livetvtimers.html + + + Resources\dashboard-ui\log.html + + + Resources\dashboard-ui\login.html + + + Resources\dashboard-ui\metadata.html + + + Resources\dashboard-ui\metadataadvanced.html + + + Resources\dashboard-ui\metadataimages.html + + + Resources\dashboard-ui\metadatakodi.html + + + Resources\dashboard-ui\metadatasubtitles.html + + + Resources\dashboard-ui\moviegenres.html + + + Resources\dashboard-ui\moviepeople.html + + + Resources\dashboard-ui\movies.html + + + Resources\dashboard-ui\movieslatest.html + + + Resources\dashboard-ui\moviesrecommended.html + + + Resources\dashboard-ui\moviestudios.html + + + Resources\dashboard-ui\movietrailers.html + + + Resources\dashboard-ui\musicalbumartists.html + + + Resources\dashboard-ui\musicalbums.html + + + Resources\dashboard-ui\musicartists.html + + + Resources\dashboard-ui\musicgenres.html + + + Resources\dashboard-ui\musicrecommended.html + + + Resources\dashboard-ui\musicvideos.html + + + Resources\dashboard-ui\mypreferencesdisplay.html + + + Resources\dashboard-ui\mypreferenceslanguages.html + + + Resources\dashboard-ui\mypreferenceswebclient.html + + + Resources\dashboard-ui\myprofile.html + + + Resources\dashboard-ui\notificationlist.html + + + Resources\dashboard-ui\notificationsetting.html + + + Resources\dashboard-ui\notificationsettings.html + + + Resources\dashboard-ui\nowplaying.html + + + Resources\dashboard-ui\playbackconfiguration.html + + + Resources\dashboard-ui\playlist.html + + + Resources\dashboard-ui\playlistedit.html + + + Resources\dashboard-ui\playlists.html + + + Resources\dashboard-ui\plugincatalog.html + + + Resources\dashboard-ui\plugins.html + + + Resources\dashboard-ui\reports.html + + + Resources\dashboard-ui\scheduledtask.html + + + Resources\dashboard-ui\scheduledtasks.html + + + Resources\dashboard-ui\selectserver.html + + + Resources\dashboard-ui\serversecurity.html + + + Resources\dashboard-ui\songs.html + + + Resources\dashboard-ui\support.html + + + Resources\dashboard-ui\supporter.html + + + Resources\dashboard-ui\supporterkey.html + + + Resources\dashboard-ui\tvgenres.html + + + Resources\dashboard-ui\tvlatest.html + + + Resources\dashboard-ui\tvpeople.html + + + Resources\dashboard-ui\tvrecommended.html + + + Resources\dashboard-ui\tvshows.html + + + Resources\dashboard-ui\tvstudios.html + + + Resources\dashboard-ui\tvupcoming.html + + + Resources\dashboard-ui\useredit.html + + + Resources\dashboard-ui\userlibraryaccess.html + + + Resources\dashboard-ui\usernew.html + + + Resources\dashboard-ui\userparentalcontrol.html + + + Resources\dashboard-ui\userpassword.html + + + Resources\dashboard-ui\userprofiles.html + + + Resources\dashboard-ui\wizardfinish.html + + + Resources\dashboard-ui\wizardlibrary.html + + + Resources\dashboard-ui\wizardservice.html + + + Resources\dashboard-ui\wizardsettings.html + + + Resources\dashboard-ui\wizardstart.html + + + Resources\dashboard-ui\wizarduser.html + + + Resources\dashboard-ui\css\.DS_Store + + + Resources\dashboard-ui\css\card.css + + + Resources\dashboard-ui\css\chromecast.css + + + Resources\dashboard-ui\css\detailtable.css + + + Resources\dashboard-ui\css\icons.css + + + Resources\dashboard-ui\css\librarybrowser.css + + + Resources\dashboard-ui\css\librarymenu.css + + + Resources\dashboard-ui\css\livetv.css + + + Resources\dashboard-ui\css\mediaplayer-video.css + + + Resources\dashboard-ui\css\mediaplayer.css + + + Resources\dashboard-ui\css\metadataeditor.css + + + Resources\dashboard-ui\css\notifications.css + + + Resources\dashboard-ui\css\nowplaying.css + + + Resources\dashboard-ui\css\pluginupdates.css + + + Resources\dashboard-ui\css\remotecontrol.css + + + Resources\dashboard-ui\css\search.css + + + Resources\dashboard-ui\css\site.css + + + Resources\dashboard-ui\css\tileitem.css + + + Resources\dashboard-ui\css\userimage.css + + + Resources\dashboard-ui\css\fonts\RobotoBold.woff + + + Resources\dashboard-ui\css\fonts\RobotoLight.woff + + + Resources\dashboard-ui\css\fonts\RobotoMedium.woff + + + Resources\dashboard-ui\css\fonts\RobotoRegular.woff + + + Resources\dashboard-ui\css\fonts\RobotoThin.woff + + + Resources\dashboard-ui\css\fonts\mblogo.woff + + + Resources\dashboard-ui\css\images\checkmarkblack.png + + + Resources\dashboard-ui\css\images\checkmarkgreen.png + + + Resources\dashboard-ui\css\images\currentuserdefaultwhite.png + + + Resources\dashboard-ui\css\images\favicon.ico + + + Resources\dashboard-ui\css\images\fresh.png + + + Resources\dashboard-ui\css\images\headersearch.png + + + Resources\dashboard-ui\css\images\iossplash.png + + + Resources\dashboard-ui\css\images\logindefault.png + + + Resources\dashboard-ui\css\images\mblogoicon.png + + + Resources\dashboard-ui\css\images\mblogotextblack.png + + + Resources\dashboard-ui\css\images\mblogotextwhite.png + + + Resources\dashboard-ui\css\images\rightarrow.png + + + Resources\dashboard-ui\css\images\rotten.png + + + Resources\dashboard-ui\css\images\server.png + + + Resources\dashboard-ui\css\images\stars.png + + + Resources\dashboard-ui\css\images\touchicon.png + + + Resources\dashboard-ui\css\images\touchicon114.png + + + Resources\dashboard-ui\css\images\touchicon72.png + + + Resources\dashboard-ui\css\images\userflyoutdefault.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_disabled_holo_dark.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_disabled_holo_light.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_off_holo_dark.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_off_holo_light.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_0_holo_dark.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_0_holo_light.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_1_holo_dark.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_1_holo_light.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_2_holo_dark.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_2_holo_light.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_holo_dark.png + + + Resources\dashboard-ui\css\images\chromecast\ic_media_route_on_holo_light.png + + + Resources\dashboard-ui\css\images\chromecast\ic_notification_media_route.png + + + Resources\dashboard-ui\css\images\clients\amazon.png + + + Resources\dashboard-ui\css\images\clients\android.png + + + Resources\dashboard-ui\css\images\clients\chrome.png + + + Resources\dashboard-ui\css\images\clients\chrome_companion.png + + + Resources\dashboard-ui\css\images\clients\dlna.png + + + Resources\dashboard-ui\css\images\clients\firefox.png + + + Resources\dashboard-ui\css\images\clients\html5.png + + + Resources\dashboard-ui\css\images\clients\ie.png + + + Resources\dashboard-ui\css\images\clients\ios.png + + + Resources\dashboard-ui\css\images\clients\kodi.png + + + Resources\dashboard-ui\css\images\clients\mb.png + + + Resources\dashboard-ui\css\images\clients\mbc.png + + + Resources\dashboard-ui\css\images\clients\mbkinect.png + + + Resources\dashboard-ui\css\images\clients\mediaportal.png + + + Resources\dashboard-ui\css\images\clients\nuvue.png + + + Resources\dashboard-ui\css\images\clients\playstore.png + + + Resources\dashboard-ui\css\images\clients\roku.jpg + + + Resources\dashboard-ui\css\images\clients\safari.png + + + Resources\dashboard-ui\css\images\clients\windowsphone.png + + + Resources\dashboard-ui\css\images\clients\windowsrt.png + + + Resources\dashboard-ui\css\images\editor\lock.png + + + Resources\dashboard-ui\css\images\editor\missing.png + + + Resources\dashboard-ui\css\images\editor\missingbackdrop.png + + + Resources\dashboard-ui\css\images\editor\missinglogo.png + + + Resources\dashboard-ui\css\images\editor\missingprimaryimage.png + + + Resources\dashboard-ui\css\images\editor\missingtrailer.png + + + Resources\dashboard-ui\css\images\icons\audiocd.png + + + Resources\dashboard-ui\css\images\icons\ellipsis-v.png + + + Resources\dashboard-ui\css\images\icons\expand.png + + + Resources\dashboard-ui\css\images\icons\filter.png + + + Resources\dashboard-ui\css\images\icons\mute.png + + + Resources\dashboard-ui\css\images\icons\nexttrack.png + + + Resources\dashboard-ui\css\images\icons\pause.png + + + Resources\dashboard-ui\css\images\icons\play.png + + + Resources\dashboard-ui\css\images\icons\previoustrack.png + + + Resources\dashboard-ui\css\images\icons\remote.png + + + Resources\dashboard-ui\css\images\icons\sort.png + + + Resources\dashboard-ui\css\images\icons\stop.png + + + Resources\dashboard-ui\css\images\icons\subtitles.png + + + Resources\dashboard-ui\css\images\icons\volumedown.png + + + Resources\dashboard-ui\css\images\icons\volumeup.png + + + Resources\dashboard-ui\css\images\icons\wireless.png + + + Resources\dashboard-ui\css\images\items\detail\audio.png + + + Resources\dashboard-ui\css\images\items\detail\game.png + + + Resources\dashboard-ui\css\images\items\detail\person.png + + + Resources\dashboard-ui\css\images\items\detail\tv.png + + + Resources\dashboard-ui\css\images\items\detail\video.png + + + Resources\dashboard-ui\css\images\items\folders\books.png + + + Resources\dashboard-ui\css\images\items\folders\channels.png + + + Resources\dashboard-ui\css\images\items\folders\edit.png + + + Resources\dashboard-ui\css\images\items\folders\folder.png + + + Resources\dashboard-ui\css\images\items\folders\games.png + + + Resources\dashboard-ui\css\images\items\folders\home.png + + + Resources\dashboard-ui\css\images\items\folders\homevideos.png + + + Resources\dashboard-ui\css\images\items\folders\movies.png + + + Resources\dashboard-ui\css\images\items\folders\music.png + + + Resources\dashboard-ui\css\images\items\folders\musicvideos.png + + + Resources\dashboard-ui\css\images\items\folders\photos.png + + + Resources\dashboard-ui\css\images\items\folders\report.png + + + Resources\dashboard-ui\css\images\items\folders\settings.png + + + Resources\dashboard-ui\css\images\items\folders\tv.png + + + Resources\dashboard-ui\css\images\items\list\audio.png + + + Resources\dashboard-ui\css\images\items\list\audiocollection.png + + + Resources\dashboard-ui\css\images\items\list\chapter.png + + + Resources\dashboard-ui\css\images\items\list\collection.png + + + Resources\dashboard-ui\css\images\items\list\game.png + + + Resources\dashboard-ui\css\images\items\list\gamecollection.png + + + Resources\dashboard-ui\css\images\items\list\person.png + + + Resources\dashboard-ui\css\images\items\list\remotesearch.png + + + Resources\dashboard-ui\css\images\items\list\video.png + + + Resources\dashboard-ui\css\images\items\searchhintsv2\film.png + + + Resources\dashboard-ui\css\images\items\searchhintsv2\game.png + + + Resources\dashboard-ui\css\images\items\searchhintsv2\music.png + + + Resources\dashboard-ui\css\images\items\searchhintsv2\person.png + + + Resources\dashboard-ui\css\images\items\searchhintsv2\tv.png + + + Resources\dashboard-ui\css\images\media\chapterflyout.png + + + Resources\dashboard-ui\css\images\media\pause.png + + + Resources\dashboard-ui\css\images\media\play.png + + + Resources\dashboard-ui\css\images\notifications\cancelled.png + + + Resources\dashboard-ui\css\images\notifications\done.png + + + Resources\dashboard-ui\css\images\notifications\download.png + + + Resources\dashboard-ui\css\images\notifications\error.png + + + Resources\dashboard-ui\css\images\notifications\info.png + + + Resources\dashboard-ui\css\images\supporter\donatepaypal.png + + + Resources\dashboard-ui\css\images\supporter\nonsupporterbadge.png + + + Resources\dashboard-ui\css\images\supporter\premiumflag.png + + + Resources\dashboard-ui\css\images\supporter\registerpaypal.png + + + Resources\dashboard-ui\css\images\supporter\supporterbadge.png + + + Resources\dashboard-ui\css\images\supporter\supporterflag.png + + + Resources\dashboard-ui\css\images\tour\enjoy.jpg + + + Resources\dashboard-ui\css\images\tour\dashboard\chapters.png + + + Resources\dashboard-ui\css\images\tour\dashboard\cinemamode.png + + + Resources\dashboard-ui\css\images\tour\dashboard\dashboard.png + + + Resources\dashboard-ui\css\images\tour\dashboard\mobile.png + + + Resources\dashboard-ui\css\images\tour\dashboard\notifications.png + + + Resources\dashboard-ui\css\images\tour\dashboard\plugins.png + + + Resources\dashboard-ui\css\images\tour\dashboard\scheduledtasks.png + + + Resources\dashboard-ui\css\images\tour\dashboard\subtitles.png + + + Resources\dashboard-ui\css\images\tour\dashboard\users.png + + + Resources\dashboard-ui\css\images\tour\web\tourcollections.jpg + + + Resources\dashboard-ui\css\images\tour\web\tourcontent.jpg + + + Resources\dashboard-ui\css\images\tour\web\toureditor.png + + + Resources\dashboard-ui\css\images\tour\web\tourmobile1.jpg + + + Resources\dashboard-ui\css\images\tour\web\tourmobile2.png + + + Resources\dashboard-ui\css\images\tour\web\tourmouseover.jpg + + + Resources\dashboard-ui\css\images\tour\web\tourmovies.jpg + + + Resources\dashboard-ui\css\images\tour\web\tourplaylist.png + + + Resources\dashboard-ui\css\images\tour\web\tourtaphold.jpg + + + Resources\dashboard-ui\css\images\tour\web\tourusersettings1.png + + + Resources\dashboard-ui\css\images\tour\web\tourusersettings2.png + + + Resources\dashboard-ui\css\images\tour\web\tourusersettings3.png + + + Resources\dashboard-ui\css\images\tour\web\tourusersettings4.png + + + Resources\dashboard-ui\css\images\userdata\administrator.png + + + Resources\dashboard-ui\css\images\userdata\checkedoff.png + + + Resources\dashboard-ui\css\images\userdata\checkedon.png + + + Resources\dashboard-ui\css\images\userdata\heart_off.png + + + Resources\dashboard-ui\css\images\userdata\heart_on.png + + + Resources\dashboard-ui\css\images\userdata\password.png + + + Resources\dashboard-ui\css\images\userdata\thumbs_down_off.png + + + Resources\dashboard-ui\css\images\userdata\thumbs_down_on.png + + + Resources\dashboard-ui\css\images\userdata\thumbs_up_off.png + + + Resources\dashboard-ui\css\images\userdata\thumbs_up_on.png + + + Resources\dashboard-ui\files\dummy.mp4 + + + Resources\dashboard-ui\scripts\aboutpage.js + + + Resources\dashboard-ui\scripts\addpluginpage.js + + + Resources\dashboard-ui\scripts\advancedconfigurationpage.js + + + Resources\dashboard-ui\scripts\alphapicker.js + + + Resources\dashboard-ui\scripts\autoorganizelog.js + + + Resources\dashboard-ui\scripts\autoorganizetv.js + + + Resources\dashboard-ui\scripts\backdrops.js + + + Resources\dashboard-ui\scripts\channelitems.js + + + Resources\dashboard-ui\scripts\channels.js + + + Resources\dashboard-ui\scripts\channelsettings.js + + + Resources\dashboard-ui\scripts\channelslatest.js + + + Resources\dashboard-ui\scripts\chromecast.js + + + Resources\dashboard-ui\scripts\cinemamodeconfiguration.js + + + Resources\dashboard-ui\scripts\connectlogin.js + + + Resources\dashboard-ui\scripts\dashboardgeneral.js + + + Resources\dashboard-ui\scripts\dashboardpage.js + + + Resources\dashboard-ui\scripts\dashboardsync.js + + + Resources\dashboard-ui\scripts\device.js + + + Resources\dashboard-ui\scripts\devices.js + + + Resources\dashboard-ui\scripts\devicesupload.js + + + Resources\dashboard-ui\scripts\directorybrowser.js + + + Resources\dashboard-ui\scripts\dlnaprofile.js + + + Resources\dashboard-ui\scripts\dlnaprofiles.js + + + Resources\dashboard-ui\scripts\dlnaserversettings.js + + + Resources\dashboard-ui\scripts\dlnasettings.js + + + Resources\dashboard-ui\scripts\editcollectionitems.js + + + Resources\dashboard-ui\scripts\edititemimages.js + + + Resources\dashboard-ui\scripts\edititemmetadata.js + + + Resources\dashboard-ui\scripts\edititemsubtitles.js + + + Resources\dashboard-ui\scripts\editorsidebar.js + + + Resources\dashboard-ui\scripts\encodingsettings.js + + + Resources\dashboard-ui\scripts\episodes.js + + + Resources\dashboard-ui\scripts\extensions.js + + + Resources\dashboard-ui\scripts\externalplayer.js + + + Resources\dashboard-ui\scripts\favorites.js + + + Resources\dashboard-ui\scripts\forgotpassword.js + + + Resources\dashboard-ui\scripts\forgotpasswordpin.js + + + Resources\dashboard-ui\scripts\gamegenrepage.js + + + Resources\dashboard-ui\scripts\gamespage.js + + + Resources\dashboard-ui\scripts\gamesrecommendedpage.js + + + Resources\dashboard-ui\scripts\gamestudiospage.js + + + Resources\dashboard-ui\scripts\gamesystemspage.js + + + Resources\dashboard-ui\scripts\homelatest.js + + + Resources\dashboard-ui\scripts\indexpage.js + + + Resources\dashboard-ui\scripts\itembynamedetailpage.js + + + Resources\dashboard-ui\scripts\itemdetailpage.js + + + Resources\dashboard-ui\scripts\itemgallery.js + + + Resources\dashboard-ui\scripts\itemlistpage.js + + + Resources\dashboard-ui\scripts\librarybrowser.js + + + Resources\dashboard-ui\scripts\librarylist.js + + + Resources\dashboard-ui\scripts\librarymenu.js + + + Resources\dashboard-ui\scripts\librarypathmapping.js + + + Resources\dashboard-ui\scripts\librarysettings.js + + + Resources\dashboard-ui\scripts\livetvchannel.js + + + Resources\dashboard-ui\scripts\livetvchannels.js + + + Resources\dashboard-ui\scripts\livetvguide.js + + + Resources\dashboard-ui\scripts\livetvnewrecording.js + + + Resources\dashboard-ui\scripts\livetvprogram.js + + + Resources\dashboard-ui\scripts\livetvrecording.js + + + Resources\dashboard-ui\scripts\livetvrecordinglist.js + + + Resources\dashboard-ui\scripts\livetvrecordings.js + + + Resources\dashboard-ui\scripts\livetvseriestimer.js + + + Resources\dashboard-ui\scripts\livetvseriestimers.js + + + Resources\dashboard-ui\scripts\livetvsettings.js + + + Resources\dashboard-ui\scripts\livetvstatus.js + + + Resources\dashboard-ui\scripts\livetvsuggested.js + + + Resources\dashboard-ui\scripts\livetvtimer.js + + + Resources\dashboard-ui\scripts\livetvtimers.js + + + Resources\dashboard-ui\scripts\loginpage.js + + + Resources\dashboard-ui\scripts\logpage.js + + + Resources\dashboard-ui\scripts\mediacontroller.js + + + Resources\dashboard-ui\scripts\medialibrarypage.js + + + Resources\dashboard-ui\scripts\mediaplayer-video.js + + + Resources\dashboard-ui\scripts\mediaplayer.js + + + Resources\dashboard-ui\scripts\metadataadvanced.js + + + Resources\dashboard-ui\scripts\metadataconfigurationpage.js + + + Resources\dashboard-ui\scripts\metadataimagespage.js + + + Resources\dashboard-ui\scripts\metadatakodi.js + + + Resources\dashboard-ui\scripts\metadatasubtitles.js + + + Resources\dashboard-ui\scripts\moviecollections.js + + + Resources\dashboard-ui\scripts\moviegenres.js + + + Resources\dashboard-ui\scripts\moviepeople.js + + + Resources\dashboard-ui\scripts\movies.js + + + Resources\dashboard-ui\scripts\movieslatest.js + + + Resources\dashboard-ui\scripts\moviesrecommended.js + + + Resources\dashboard-ui\scripts\moviestudios.js + + + Resources\dashboard-ui\scripts\movietrailers.js + + + Resources\dashboard-ui\scripts\musicalbumartists.js + + + Resources\dashboard-ui\scripts\musicalbums.js + + + Resources\dashboard-ui\scripts\musicartists.js + + + Resources\dashboard-ui\scripts\musicgenres.js + + + Resources\dashboard-ui\scripts\musicrecommended.js + + + Resources\dashboard-ui\scripts\musicvideos.js + + + Resources\dashboard-ui\scripts\mypreferencesdisplay.js + + + Resources\dashboard-ui\scripts\mypreferenceslanguages.js + + + Resources\dashboard-ui\scripts\mypreferenceswebclient.js + + + Resources\dashboard-ui\scripts\myprofile.js + + + Resources\dashboard-ui\scripts\notificationlist.js + + + Resources\dashboard-ui\scripts\notifications.js + + + Resources\dashboard-ui\scripts\notificationsetting.js + + + Resources\dashboard-ui\scripts\notificationsettings.js + + + Resources\dashboard-ui\scripts\nowplayingbar.js + + + Resources\dashboard-ui\scripts\nowplayingpage.js + + + Resources\dashboard-ui\scripts\playbackconfiguration.js + + + Resources\dashboard-ui\scripts\playlist.js + + + Resources\dashboard-ui\scripts\playlistedit.js + + + Resources\dashboard-ui\scripts\playlistmanager.js + + + Resources\dashboard-ui\scripts\playlists.js + + + Resources\dashboard-ui\scripts\plugincatalogpage.js + + + Resources\dashboard-ui\scripts\pluginspage.js + + + Resources\dashboard-ui\scripts\ratingdialog.js + + + Resources\dashboard-ui\scripts\remotecontrol.js + + + Resources\dashboard-ui\scripts\reports.js + + + Resources\dashboard-ui\scripts\scheduledtaskpage.js + + + Resources\dashboard-ui\scripts\scheduledtaskspage.js + + + Resources\dashboard-ui\scripts\search.js + + + Resources\dashboard-ui\scripts\selectserver.js + + + Resources\dashboard-ui\scripts\serversecurity.js + + + Resources\dashboard-ui\scripts\site.js + + + Resources\dashboard-ui\scripts\songs.js + + + Resources\dashboard-ui\scripts\supporterkeypage.js + + + Resources\dashboard-ui\scripts\supporterpage.js + + + Resources\dashboard-ui\scripts\sync.js + + + Resources\dashboard-ui\scripts\thememediaplayer.js + + + Resources\dashboard-ui\scripts\tvgenres.js + + + Resources\dashboard-ui\scripts\tvlatest.js + + + Resources\dashboard-ui\scripts\tvpeople.js + + + Resources\dashboard-ui\scripts\tvrecommended.js + + + Resources\dashboard-ui\scripts\tvshows.js + + + Resources\dashboard-ui\scripts\tvstudios.js + + + Resources\dashboard-ui\scripts\tvupcoming.js + + + Resources\dashboard-ui\scripts\useredit.js + + + Resources\dashboard-ui\scripts\userlibraryaccess.js + + + Resources\dashboard-ui\scripts\usernew.js + + + Resources\dashboard-ui\scripts\userparentalcontrol.js + + + Resources\dashboard-ui\scripts\userpassword.js + + + Resources\dashboard-ui\scripts\userprofilespage.js + + + Resources\dashboard-ui\scripts\wizardfinishpage.js + + + Resources\dashboard-ui\scripts\wizardservice.js + + + Resources\dashboard-ui\scripts\wizardsettings.js + + + Resources\dashboard-ui\scripts\wizardstartpage.js + + + Resources\dashboard-ui\scripts\wizarduserpage.js + + + Resources\dashboard-ui\thirdparty\browser.js + + + Resources\dashboard-ui\thirdparty\cast_sender.js + + + Resources\dashboard-ui\thirdparty\jquery-2.1.1.min.js + + + Resources\dashboard-ui\thirdparty\jquery.unveil-custom.js + + + Resources\dashboard-ui\thirdparty\apiclient\connectionmanager.js + + + Resources\dashboard-ui\thirdparty\apiclient\connectservice.js + + + Resources\dashboard-ui\thirdparty\apiclient\credentials.js + + + Resources\dashboard-ui\thirdparty\apiclient\device.js + + + Resources\dashboard-ui\thirdparty\apiclient\md5.js + + + Resources\dashboard-ui\thirdparty\apiclient\mediabrowser.apiclient.js + + + Resources\dashboard-ui\thirdparty\apiclient\network.js + + + Resources\dashboard-ui\thirdparty\apiclient\sha1.js + + + Resources\dashboard-ui\thirdparty\apiclient\store.js + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.3.min.css + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.3.min.js + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.3.min.map + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.4.min.css + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.4.min.js + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\jquery.mobile-1.4.4.min.map + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\ajax-loader.gif + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\action-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\action-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\alert-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\alert-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-d-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\arrow-u-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\audio-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\audio-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\back-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\back-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bars-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bars-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bullets-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\bullets-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\calendar-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\calendar-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\camera-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\camera-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-d-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-d-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-u-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\carat-u-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\check-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\check-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\clock-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\clock-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\cloud-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\cloud-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\comment-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\comment-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\delete-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\delete-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\edit-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\edit-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\eye-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\eye-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forbidden-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forbidden-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forward-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\forward-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\gear-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\gear-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\grid-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\grid-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\heart-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\heart-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\home-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\home-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\info-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\info-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\location-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\location-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\lock-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\lock-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\mail-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\mail-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\minus-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\minus-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\navigation-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\navigation-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\phone-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\phone-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\plus-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\plus-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\power-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\power-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\recycle-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\recycle-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\refresh-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\refresh-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\search-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\search-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\shop-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\shop-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\star-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\star-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\tag-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\tag-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\user-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\user-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\video-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-png\video-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\action-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\action-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\alert-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\alert-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-d-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\arrow-u-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\audio-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\audio-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\back-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\back-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bars-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bars-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bullets-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\bullets-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\calendar-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\calendar-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\camera-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\camera-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-d-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-d-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-u-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\carat-u-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\check-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\check-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\clock-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\clock-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\cloud-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\cloud-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\comment-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\comment-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\delete-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\delete-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\edit-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\edit-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\eye-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\eye-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forbidden-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forbidden-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forward-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\forward-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\gear-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\gear-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\grid-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\grid-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\heart-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\heart-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\home-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\home-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\info-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\info-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\location-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\location-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\lock-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\lock-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\mail-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\mail-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\minus-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\minus-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\navigation-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\navigation-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\phone-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\phone-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\plus-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\plus-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\power-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\power-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\recycle-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\recycle-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\refresh-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\refresh-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\search-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\search-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\shop-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\shop-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\star-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\star-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\tag-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\tag-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\user-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\user-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\video-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.4\images\icons-svg\video-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.css + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.js + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.map + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\ajax-loader.gif + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\action-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\action-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\alert-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\alert-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-d-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\arrow-u-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\audio-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\audio-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\back-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\back-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bars-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bars-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bullets-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\bullets-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\calendar-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\calendar-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\camera-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\camera-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-d-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-d-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-l-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-l-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-r-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-r-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-u-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\carat-u-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\check-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\check-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\clock-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\clock-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\cloud-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\cloud-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\comment-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\comment-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\delete-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\delete-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\edit-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\edit-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\eye-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\eye-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forbidden-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forbidden-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forward-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\forward-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\gear-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\gear-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\grid-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\grid-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\heart-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\heart-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\home-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\home-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\info-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\info-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\location-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\location-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\lock-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\lock-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\mail-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\mail-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\minus-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\minus-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\navigation-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\navigation-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\phone-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\phone-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\plus-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\plus-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\power-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\power-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\recycle-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\recycle-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\refresh-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\refresh-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\search-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\search-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\shop-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\shop-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\star-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\star-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\tag-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\tag-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\user-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\user-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\video-black.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-png\video-white.png + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\action-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\action-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\alert-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\alert-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-d-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\arrow-u-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\audio-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\audio-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\back-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\back-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bars-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bars-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bullets-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\bullets-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\calendar-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\calendar-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\camera-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\camera-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-d-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-d-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-l-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-l-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-r-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-r-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-u-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\carat-u-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\check-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\check-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\clock-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\clock-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\cloud-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\cloud-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\comment-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\comment-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\delete-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\delete-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\edit-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\edit-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\eye-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\eye-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forbidden-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forbidden-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forward-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\forward-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\gear-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\gear-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\grid-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\grid-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\heart-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\heart-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\home-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\home-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\info-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\info-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\location-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\location-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\lock-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\lock-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\mail-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\mail-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\minus-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\minus-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\navigation-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\navigation-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\phone-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\phone-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\plus-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\plus-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\power-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\power-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\recycle-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\recycle-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\refresh-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\refresh-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\search-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\search-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\shop-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\shop-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\star-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\star-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\tag-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\tag-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\user-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\user-white.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\video-black.svg + + + Resources\dashboard-ui\thirdparty\jquerymobile-1.4.5\images\icons-svg\video-white.svg + + + Resources\dashboard-ui\thirdparty\jstree1.0\jquery.jstree.js + + + Resources\dashboard-ui\thirdparty\jstree1.0\jquery.jstree.min.js + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\bg.jpg + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\d.png + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\dot_for_ie.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\style.css + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\apple\throbber.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\d.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\d.png + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\dot_for_ie.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\style.css + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\classic\throbber.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\d.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\d.png + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\style.css + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default\throbber.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\d.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\d.png + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\dots.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\style.css + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\default-rtl\throbber.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\d.gif + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\d.png + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\style.css + + + Resources\dashboard-ui\thirdparty\jstree1.0\themes\mb3\throbber.gif + + + Resources\dashboard-ui\thirdparty\swipebox-master\css\swipebox.css + + + Resources\dashboard-ui\thirdparty\swipebox-master\css\swipebox.min.css + + + Resources\dashboard-ui\thirdparty\swipebox-master\img\icons.png + + + Resources\dashboard-ui\thirdparty\swipebox-master\img\icons.svg + + + Resources\dashboard-ui\thirdparty\swipebox-master\img\loader.gif + + + Resources\dashboard-ui\thirdparty\swipebox-master\js\jquery.swipebox.js + + + Resources\dashboard-ui\thirdparty\swipebox-master\js\jquery.swipebox.min.js + + + \ No newline at end of file diff --git a/MediaBrowser.Server.Mac/Resources/appicon.icns b/MediaBrowser.Server.Mac/Resources/appicon.icns new file mode 100644 index 0000000000000000000000000000000000000000..74fbdd5a3154f1d188be6e75ce1e756e704305d4 GIT binary patch literal 50218 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 Btj+)c literal 0 HcmV?d00001 diff --git a/MediaBrowser.Server.Mac/app.config b/MediaBrowser.Server.Mac/app.config new file mode 100644 index 0000000000..863b328fb2 --- /dev/null +++ b/MediaBrowser.Server.Mac/app.config @@ -0,0 +1,9 @@ + + + +
+ + + + + diff --git a/MediaBrowser.Server.Mac/touchicon.png b/MediaBrowser.Server.Mac/statusicon.png similarity index 100% rename from MediaBrowser.Server.Mac/touchicon.png rename to MediaBrowser.Server.Mac/statusicon.png