Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

clients.php 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?
  2. View::show_header('Client Rules');
  3. if (!$WhitelistedClients = $Cache->get_value('whitelisted_clients')) {
  4. $DB->query('
  5. SELECT vstring
  6. FROM xbt_client_whitelist
  7. WHERE vstring NOT LIKE \'//%\'
  8. ORDER BY vstring ASC');
  9. $WhitelistedClients = $DB->to_array(false, MYSQLI_NUM, false);
  10. $Cache->cache_value('whitelisted_clients', $WhitelistedClients, 604800);
  11. }
  12. ?>
  13. <div class="thin">
  14. <div class="header">
  15. <h2 class="center">Client Whitelist</h2>
  16. </div>
  17. <div class="box pad">
  18. <p>Client rules are how we maintain the integrity of our swarms. This allows us to filter out disruptive and dishonest clients that may hurt the performance of either the tracker or individual peers.</p>
  19. <table cellpadding="5" cellspacing="1" border="0" class="border" width="100%">
  20. <tr class="colhead">
  21. <td style="width: 150px;"><strong>Allowed Client</strong></td>
  22. <!-- td style="width: 400px;"><strong>Additional Notes</strong></td> -->
  23. </tr>
  24. <?
  25. foreach ($WhitelistedClients as $Client) {
  26. //list($ClientName, $Notes) = $Client;
  27. list($ClientName) = $Client;
  28. ?>
  29. <tr class="row">
  30. <td><?=$ClientName?></td>
  31. </tr>
  32. <? } ?>
  33. </table>
  34. </div>
  35. <h3>Further Rules</h3>
  36. <div class="box pad rule_summary">
  37. <p>
  38. The modification of clients to bypass our client requirements (spoofing) is explicitly forbidden. People caught doing this will be instantly and permanently banned. When you leak peers, everyone loses. This is your only warning.
  39. </p>
  40. <p>
  41. The use of clients or proxies which have been modified to report incorrect stats to the tracker (cheating) is not allowed, and will result in a permanent ban. Feel free to keep doing it on other trackers, though. That's their problem.
  42. </p>
  43. <p>
  44. The testing of unstable clients by developers is not allowed unless approved by a staff member.
  45. </p>
  46. </div>
  47. <h3>Further Details</h3>
  48. <div class="box pad rule_summary">
  49. <p>
  50. If someone you invited to the site breaks the above rules you will receive a 2 month warning and lose the right to invite people to this site.
  51. </p>
  52. </div>
  53. <? include('jump.php'); ?>
  54. </div>
  55. <? View::show_footer(); ?>