BioTorrents.de’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.

rules.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. # Formerly Rules::display_golden_rules()
  3. $ENV = ENV::go();
  4. View::show_header('Golden rules');
  5. ?>
  6. <div>
  7. <div class="header">
  8. <h2 class="center">
  9. Golden rules
  10. </h2>
  11. </div>
  12. <div class="box pad rule_summary">
  13. <ul>
  14. <li>
  15. <strong>
  16. <a href="https://www.dol.gov/general/ppii" target="_blank">Personal Identifiable Information (PII)</a>
  17. is not allowed anywhere on the site without specific staff approval.
  18. </strong>
  19. </li>
  20. <li>
  21. Staff can do anything to anyone for any reason (or no reason).
  22. If you take issue with a decision, you must do so privately with the staff member who issued the decision.
  23. </li>
  24. <li>
  25. One account per person per lifetime.
  26. </li>
  27. <li>
  28. Follow proper private BitTorrent practices.
  29. Torrent files you download from this site are unique to you and should not be shared with others.
  30. Torrent files from this site should not be modified under any circumstances.
  31. </li>
  32. <li>
  33. Buying <?= $ENV->SITE_NAME ?> invites is not allowed.
  34. If staff discover you have purchased an invite, you will be banned for life.
  35. You will be given amnesty if you approach us before you are caught and reveal who your seller was.
  36. Waiting until after you are caught will get you nothing.
  37. </li>
  38. <li>
  39. Accessing the site from any IP address is permitted,
  40. but your account will be linked with other accounts that have accessed the site from the same IP as you.
  41. As such, it is <em>recommended</em> that you don't use public networks, proxies, or VPNs to access the site.
  42. </li>
  43. <li>
  44. Attempting to find a bug in the site code is allowed and sometimes even rewarded.
  45. Follow proper disclosure procedures by contacting staff about the issue well before disclosing it publicly.
  46. Do not misuse any bugs you may discover.
  47. Do not attempt to portray abuse as a bug in the hopes of a reward.
  48. </li>
  49. <li>
  50. Don't reveal the criteria for hidden badges or events.
  51. </li>
  52. </ul>
  53. </div>
  54. <?php include('jump.php'); ?>
  55. </div>
  56. <?php View::show_footer();