Ticket #19072: geoip_doc.diff

File geoip_doc.diff, 1.1 KB (added by Flavio Curella, 12 years ago)
  • docs/ref/contrib/gis/geoip.txt

    diff --git a/docs/ref/contrib/gis/geoip.txt b/docs/ref/contrib/gis/geoip.txt
    index a30573d..f6467b5 100644
    a b to the GPL-licensed `Python GeoIP`__ interface provided by MaxMind.  
    2323In order to perform IP-based geolocation, the :class:`GeoIP` object requires
    2424the GeoIP C libary and either the GeoIP `Country`__ or `City`__
    2525datasets in binary format (the CSV files will not work!).  These datasets may be
    26 `downloaded from MaxMind`__.  Grab the ``GeoIP.dat.gz`` and ``GeoLiteCity.dat.gz``
    27 and unzip them in a directory corresponding to what you set
    28 :setting:`GEOIP_PATH` with in your settings.  See the example and reference below
    29 for more details.
     26`downloaded from MaxMind`__.  Grab the ``GeoLiteCity.dat.gz`` and the
     27``GeoIP.dat.gz`` inside the ``GeoLiteCountry`` directorty and unzip them in a
     28directory corresponding to what you set :setting:`GEOIP_PATH` with in your
     29settings.  See the example and reference below for more details.
    3030
    3131__ http://www.maxmind.com/app/c
    3232__ http://www.maxmind.com/app/python
Back to Top