Globs for INTERNAL_IPS

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from fnmatch import fnmatch
class glob_list(list):
    def __contains__(self, key):
        for elt in self:
            if fnmatch(key, elt): return True
        return False

INTERNAL_IPS = glob_list([
    '127.0.0.1',
    '18.85.*.*'
    ])

More like this

  1. Include entire networks in INTERNAL_IPS setting by pmclanahan 2 years, 11 months ago
  2. Support IP ranges in INTERNAL_IPS by jdunck 2 years, 1 month ago
  3. Middleware to prevent access to the admin when user ip not in INTERNAL_IPS by jezdez 1 year, 7 months ago
  4. Internal view decorator by gsakkis 1 year, 6 months ago
  5. Firebug Lite Middleware by jfw 3 years, 3 months ago

Comments

pmclanahan (on October 14, 2009):

Brilliant. Thanks for sharing!!

#

(Forgotten your password?)