1 from forum.settings import EXT_KEYS_SET
 
   2 from forum.settings.base import Setting
 
   4 RECAPTCHA_PUB_KEY = Setting('RECAPTCHA_PUB_KEY', '', EXT_KEYS_SET, dict(
 
   5 label = "Recaptch public key",
 
   7 Get this key at <a href="http://recaptcha.net">reCaptcha</a> to enable
 
   8 recaptcha anti spam through.
 
  12 RECAPTCHA_PRIV_KEY = Setting('RECAPTCHA_PRIV_KEY', '', EXT_KEYS_SET, dict(
 
  13 label = "Recaptch private key",
 
  15 This is the private key you'll get in the same place as the recaptcha public key.