Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Do not hardcode http scheme. (Fixes #27).
Browse files Browse the repository at this point in the history
  • Loading branch information
kingosticks committed Apr 7, 2018
1 parent ef67637 commit a9f79ea
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions mopidy_websettings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<meta http-equiv="cleartype" content="on">
<title>MusicBox Settings</title>

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.css" />
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script>

<meta name="description" content="MusicBox">
<meta name="author" content="Wouter van Wijk">
Expand Down Expand Up @@ -244,7 +244,7 @@ <h2>Music files</h2>

<label for="network__mount_options">Additional Mount Options</label>
<p>Depending on your file server you may need to specify a different protocol version or other options.
See <a href="https://linux.die.net/man/8/mount.cifs" target="_blank">here</a> for further details.</p>
See <a href="//linux.die.net/man/8/mount.cifs" target="_blank">here</a> for further details.</p>
<input type="text" name="network__mount_options" value="{{ network__mount_options }}" size="15"/>

</div>
Expand All @@ -255,7 +255,7 @@ <h3>Services</h3>
<div data-role="collapsible" class="settingscoll">
<h2>Spotify</h2>
<p>Enable playing music from Spotify. This now also requires additional credentials obtained from
<a href="https://www.mopidy.com/authenticate#spotify" target="_blank">https://www.mopidy.com/authenticate</a>
<a href="https//www.mopidy.com/authenticate#spotify" target="_blank">www.mopidy.com/authenticate</a>
</p>
<div>
<select name="spotify__enabled" data-role="slider"><br/>
Expand All @@ -268,11 +268,11 @@ <h2>Spotify</h2>
<label for="spotify__password">Password</label>
<input type="password" name="spotify__password" value="{{ spotify__password }}" size="10"/>
<label for="spotify__client_id">Client ID</label>
<p>From <a href="https://www.mopidy.com/authenticate#spotify" target="_blank">https://www.mopidy.com/authenticate</a>
<p>From <a href="https://www.mopidy.com/authenticate#spotify" target="_blank">www.mopidy.com/authenticate</a>
e.g. 1b3c56f8-2a4e-1b3d-a9b2-1d3e56f89c</p>
<input type="text" name="spotify__client_id" value="{{ spotify__client_id }}" size="30" maxlength="50"/>
<label for="spotify__client_secret">Client Secret</label>
<p>From <a href="https://www.mopidy.com/authenticate#spotify" target="_blank">https://www.mopidy.com/authenticate</a>
<p>From <a href="https://www.mopidy.com/authenticate#spotify" target="_blank">www.mopidy.com/authenticate</a>
e.g. aBcdEFGhj-jk12z3548d8sma-LKdDYvbR674GDGDa=</p>
<input type="text" name="spotify__client_secret" value="{{ spotify__client_secret }}" size="40" maxlength="60"/>
<label for="spotify__bitrate">Music Quality (bitrate)</label>
Expand Down Expand Up @@ -357,7 +357,7 @@ <h2>AudioAddict</h2>
<div data-role="collapsible" class="settingscoll">
<h2>SoundCloud</h2>
<p>SoundCloud requires credentials obtained from
<a href="https://www.mopidy.com/authenticate" target="_blank">https://www.mopidy.com/authenticate</a>
<a href="https://www.mopidy.com/authenticate" target="_blank">www.mopidy.com/authenticate</a>
</p>
<div>
<select name="soundcloud__enabled" data-role="slider"><br/>
Expand Down Expand Up @@ -458,7 +458,7 @@ <h2>Dirble</h2>
<input type="text" name="dirble__countries" value="{{ dirble__countries }}" size="15" maxlength="40"/>
-->
<label for="dirble__api_key">API-key</label>
<p>Optionally you can get an api-key by creating an account at <a href="http://www.dirble.com/">Dirble.com</a>. Then go to the section 'Your API-Keys' and copy the key you see and fill it in e.g 473279e3fa0e7010cbbbb40ecc31890d46e57a2e</p>
<p>Optionally you can get an api-key by creating an account at <a href="https://www.dirble.com/">Dirble.com</a>. Then go to the section 'Your API-Keys' and copy the key you see and fill it in e.g 473279e3fa0e7010cbbbb40ecc31890d46e57a2e</p>
<input type="text" name="dirble__api_key" value="{{ dirble__api_key }}" size="15" maxlength="40"/>

</div>
Expand Down

0 comments on commit a9f79ea

Please sign in to comment.