Add Platinum to ratings
This commit is contained in:
@@ -133,6 +133,7 @@ p.indent { padding-left: 1em; padding-right: 1em;}
|
|||||||
.committed { font-style: italic; color: gray; }
|
.committed { font-style: italic; color: gray; }
|
||||||
|
|
||||||
/* App Support status */
|
/* App Support status */
|
||||||
|
.platinum { background-color: #EFEFEF; }
|
||||||
.gold { background-color: #fff600; }
|
.gold { background-color: #fff600; }
|
||||||
.silver { background-color: silver; }
|
.silver { background-color: silver; }
|
||||||
.bronze { background-color: #fcba0a; }
|
.bronze { background-color: #fcba0a; }
|
||||||
|
|||||||
@@ -18,11 +18,13 @@ table.historyTable { border: 1px;
|
|||||||
font-family: "bitstream vera sans", "verdana", "arial", "helvetica", sans-serif;
|
font-family: "bitstream vera sans", "verdana", "arial", "helvetica", sans-serif;
|
||||||
font-size: 12px; }
|
font-size: 12px; }
|
||||||
|
|
||||||
|
td.platinum { background-color: #EFEFEF; }
|
||||||
td.gold { background-color: #fff600; }
|
td.gold { background-color: #fff600; }
|
||||||
td.silver { background-color: silver; }
|
td.silver { background-color: silver; }
|
||||||
td.bronze { background-color: #fcba0a; }
|
td.bronze { background-color: #fcba0a; }
|
||||||
td.garbage { background-color: #999966; }
|
td.garbage { background-color: #999966; }
|
||||||
|
|
||||||
|
td.platinum { background-color: #EFEFEF; }
|
||||||
tr.gold { background-color: #fff600; }
|
tr.gold { background-color: #fff600; }
|
||||||
tr.silver { background-color: silver; }
|
tr.silver { background-color: silver; }
|
||||||
tr.bronze { background-color: #fcba0a; }
|
tr.bronze { background-color: #fcba0a; }
|
||||||
|
|||||||
@@ -10,32 +10,37 @@ users by giving a rating based on an "expert's" experience.
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li>Gold</li>
|
<li class="platinum">Platinum</li>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
An application can be rated as Gold if it installs and runs "out of the box".
|
An application can be rated as Platinum if it installs and runs "out of the box" No changes required to winecfg.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<li>Silver</li>
|
<li class="gold">Gold</li>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
If an application needs DLL overrides (native DLL's from a Windows installation) to install and
|
Application works flawlessly with some DLL overrides or other settings, crack etc.
|
||||||
run but runs flawlessly otherwise, then it can be rated as silver. There should be an accompanying "How-To"
|
|
||||||
written to allow users to get this application to run.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<li>Bronze</li>
|
<li class="silver">Silver</li>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Bronze Applications may have bugs in them and require DLL overrides. If the program can be used
|
Application works excellently for 'normal' use; a game works fine in single-player but not
|
||||||
as it was intended but is missing features then the can be rated as Bronze.
|
in multi-player, Windows Media Player works fine as a plug-in and stand-alone player, but can't handle DRM etc.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<li>Garbage</li>
|
<li class="Bronze">Bronze</li>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Application works, but it has some issues, even for normal use; a game may not redraw properly or display fonts in wrong colours, be a much slower than it should etc.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<li class="Garbage">Garbage</li>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
An app gets this rating if it can not be used for the purpose it was designed.
|
An app gets this rating if it can not be used for the purpose it was designed.
|
||||||
There should be at least one bug report in bugzilla if an app gets this rating.
|
There should be at least one bug report in bugzilla if an app gets this rating.
|
||||||
|
Application doesn't start, or starts but has so many errors that it is nearly impossible to use it
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -139,15 +139,15 @@ function make_maintainer_rating_list($varname, $cvalue)
|
|||||||
|
|
||||||
echo "<select name='$varname'>\n";
|
echo "<select name='$varname'>\n";
|
||||||
echo "<option value=\"\">Choose ...</option>\n";
|
echo "<option value=\"\">Choose ...</option>\n";
|
||||||
$aRating = array("Gold", "Silver", "Bronze", "Garbage");
|
$aRating = array("Platinum", "Gold", "Silver", "Bronze", "Garbage");
|
||||||
$iMax = count($aRating);
|
$iMax = count($aRating);
|
||||||
|
|
||||||
for($i=0; $i < $iMax; $i++)
|
for($i=0; $i < $iMax; $i++)
|
||||||
{
|
{
|
||||||
if($aRating[$i] == $cvalue)
|
if($aRating[$i] == $cvalue)
|
||||||
echo "<option value=$aRating[$i] selected>$aRating[$i]\n";
|
echo "<option class=$aRating[$i] value=$aRating[$i] selected>$aRating[$i]\n";
|
||||||
else
|
else
|
||||||
echo "<option value=$aRating[$i]>$aRating[$i]\n";
|
echo "<option class=$aRating[$i] value=$aRating[$i]>$aRating[$i]\n";
|
||||||
}
|
}
|
||||||
echo "</select>\n";
|
echo "</select>\n";
|
||||||
}
|
}
|
||||||
|
|||||||
15
index.php
15
index.php
@@ -88,8 +88,20 @@ If you have screenshots or links to contribute, please browse the database and u
|
|||||||
|
|
||||||
<p>This is a list of applications that are known to be working well and for which many AppDB users voted.</p>
|
<p>This is a list of applications that are known to be working well and for which many AppDB users voted.</p>
|
||||||
|
|
||||||
|
<h3>The top-10 Platinum List</h3>
|
||||||
|
<p>Only Applications which install and run flawless on a out-of-the-box Wine installation make it to the Platinum list: </p>
|
||||||
|
<table class="platinum">
|
||||||
|
<tr class="rowtitle">
|
||||||
|
<th>Application</th><th>Description</th><th>Screenshot</th>
|
||||||
|
</tr>
|
||||||
|
<?php
|
||||||
|
outputTopXRowAppsFromRating('Platinum', 10);
|
||||||
|
?>
|
||||||
|
</table>
|
||||||
|
<br />
|
||||||
|
|
||||||
<h3>The top-10 Gold List</h3>
|
<h3>The top-10 Gold List</h3>
|
||||||
<p>Applications which install and run virtually flawless on a out-of-the-box Wine installation make it to the Gold list: </p>
|
<p>Applications that work flawlessly with some DLL overrides or other settings, crack etc make it to the Gold list: </p>
|
||||||
<table class="gold">
|
<table class="gold">
|
||||||
<tr class="rowtitle">
|
<tr class="rowtitle">
|
||||||
<th>Application</th><th>Description</th><th>Screenshot</th>
|
<th>Application</th><th>Description</th><th>Screenshot</th>
|
||||||
@@ -99,6 +111,7 @@ If you have screenshots or links to contribute, please browse the database and u
|
|||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<h3>The top-10 Silver List</h3>
|
<h3>The top-10 Silver List</h3>
|
||||||
<p>The Silver list contains apps which we hope we can easily fix so they make it to Gold status:</p>
|
<p>The Silver list contains apps which we hope we can easily fix so they make it to Gold status:</p>
|
||||||
<table class=silver>
|
<table class=silver>
|
||||||
|
|||||||
Reference in New Issue
Block a user