Fixed some spelling issues and deleted some unnecessary text

This commit is contained in:
Elmar Kouwenhoven
2012-05-15 15:38:14 +02:00
parent 62da99666a
commit 44796be3f5
7 changed files with 11 additions and 11 deletions

View File

@@ -80,7 +80,7 @@
<small>
<a href="shutdown"><span class="ui-button-icon-primary ui-icon ui-icon-power"></span>Shutdown</a> |
<a href="restart"><span class="ui-button-icon-primary ui-icon ui-icon-power"></span>Restart</a> |
<a href="#" onclick="doAjaxCall('checkGithub',$(this))" data-success="Checking for update succesful" data-error="Error checking update"><span class="ui-icon ui-icon-refresh"></span>Check for new version</a>
<a href="#" onclick="doAjaxCall('checkGithub',$(this))" data-success="Checking for update successful" data-error="Error checking update"><span class="ui-icon ui-icon-refresh"></span>Check for new version</a>
</small>
</div>
<div id="donate">

View File

@@ -599,8 +599,8 @@
<label>Username:</label><input type="text" name="hpuser" value="${config['hpuser']}" size="20">
</div>
<div class="row">
<label>Password:</label><input type="password" name="hppass" value="${config['hppass']}" size="15">
<small><a href="http://headphones.codeshy.com/vip">Get an Account</a></small>
<label>Password:</label><input type="password" name="hppass" value="${config['hppass']}" size="15"><br>
<a href="http://headphones.codeshy.com/vip" id="vipserver">Get an Account!</a>
</div>
</div>
</fieldset>

View File

@@ -53,7 +53,7 @@
%>
<tr class="grade${grade}">
<td id="albumart"><div id="artistImg"><img class="albumArt" src="http://ec1.images-amazon.com/images/P/${artist['AlbumID']}.01.MZZZZZZZ.jpg" height="50" width="50"></div></td>
<td id="albumart"><div id="artistImg"><img class="albumArt"/></div></td>
<td id="name"><span title="${artist['ArtistSortName']}"></span><a href="artistPage?ArtistID=${artist['ArtistID']}" title="${artist['ArtistID']}">${artist['ArtistName']}</a></td>
<td id="status">${artist['Status']}</td>
<td id="album"><span title="${releasedate}"></span><a href="albumPage?AlbumID=${artist['AlbumID']}">${albumdisplay}</a></td>

View File

@@ -1,4 +1,4 @@
lossless<%inherit file="base.html" />
<%inherit file="base.html" />
<%!
import headphones
from headphones.helpers import checked
@@ -81,10 +81,10 @@ lossless<%inherit file="base.html" />
<fieldset>
<legend>Force Search</legend>
<div class="links">
<a href="#" onclick="doAjaxCall('forceSearch',$(this))" data-success="Checking for wanted albums succesful" data-error="Error checking wanted albums"><span class="ui-icon ui-icon-search"></span>Force Check for Wanted Albums</a>
<a href="#" onclick="doAjaxCall('forceUpdate',$(this))" data-success="Update active artists succesful" data-error="Error forcing update artists"><span class="ui-icon ui-icon-heart"></span>Force Update Active Artists</a>
<a href="#" onclick="doAjaxCall('forceSearch',$(this))" data-success="Checking for wanted albums successful" data-error="Error checking wanted albums"><span class="ui-icon ui-icon-search"></span>Force Check for Wanted Albums</a>
<a href="#" onclick="doAjaxCall('forceUpdate',$(this))" data-success="Update active artists successful" data-error="Error forcing update artists"><span class="ui-icon ui-icon-heart"></span>Force Update Active Artists</a>
<a href="#" onclick="doAjaxCall('forcePostProcess',$(this))" data-success="Post-Process is being loaded" data-error="Error doing Post-Process"><span class="ui-icon ui-icon-wrench"></span>Force Post-Process Albums in Download Folder</a>
<a href="#" onclick="doAjaxCall('checkGithub',$(this))" data-success="Checking for update succesful" data-error="Error checking update"><span class="ui-icon ui-icon-refresh"></span>Check for Headphones Updates</a>
<a href="#" onclick="doAjaxCall('checkGithub',$(this))" data-success="Checking for update successful" data-error="Error checking update"><span class="ui-icon ui-icon-refresh"></span>Check for Headphones Updates</a>
</div>
</fieldset>

View File

@@ -1,4 +1,4 @@
lossless<%inherit file="base.html" />
<%inherit file="base.html" />

View File

@@ -1,4 +1,4 @@
lossless<%inherit file="base.html" />
<%inherit file="base.html" />
<%!
import headphones
%>

View File

@@ -3,7 +3,7 @@
<%def name="headerIncludes()">
<div id="subhead_container">
<div id="subhead_menu">
<a href="#" id="menu_link_scan" onclick="doAjaxCall('forceSearch',$(this))" data-success="Checking for wanted albums succesful" data-error="Error checking wanted albums">Force Check</a>
<a href="#" id="menu_link_scan" onclick="doAjaxCall('forceSearch',$(this))" data-success="Checking for wanted albums successful" data-error="Error checking wanted albums">Force Check</a>
</div>
</div>
</%def>