From 49dc7ebaf2d17cdc44172e6d9f8961e667724cce Mon Sep 17 00:00:00 2001 From: Hidden Z Date: Fri, 5 Nov 2010 21:11:44 +0000 Subject: [PATCH] Add template for FAQ page --- pyi2phosts/templates/faq.html | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 pyi2phosts/templates/faq.html diff --git a/pyi2phosts/templates/faq.html b/pyi2phosts/templates/faq.html new file mode 100644 index 0000000..af975a4 --- /dev/null +++ b/pyi2phosts/templates/faq.html @@ -0,0 +1,52 @@ +{% extends "base.html" %} + +{% block content %} +

How we learning about new hosts

+
    +
  1. Pulling from external sources: +
      + {% for source in sources %} +
    • {{ source.url }}
    • + {% endfor %} +
    +
  2. +
  3. Adding throught our service. +
  4. +
+ +

Publish requirements

+To get published host must match the following criteria: + +

Admin's approval isn't really necessary, it only needs for +eliminate possible hijacking and mass registration attempts. +

+ +

Expiration

+

+Hosts gets checked for availability every 12 hours. If host alive, registration period +prolongated to 1 month. Until this period ends hosts are published in our hosts.txt. +

+

+If host expired, name/key pair will be keeped for 2 years but will not be +published. Until this period ends, it's impossible to register this hostname +again. +

+ +

Deletion of expired hosts

+

+Hosts expired 2 years ago gets completely deleted from our database and becomes +available for registration. +

+ +

Deletion of dead hosts

+

+If host was added from external source and we're never seen it alive, it will be +deleted after 1 year since adding date and after 14 days if it is was added +throught us. We're giving such small period because such hosts weren't published +by us because they fails availability test. +

+{% endblock %}