cubicweb/web/views/igeocodable.py
changeset 12551 f794c496e6a4
parent 12550 c6f832df2f34
child 12552 c67d4f0d0203
equal deleted inserted replaced
12550:c6f832df2f34 12551:f794c496e6a4
     1 # copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
       
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     3 #
       
     4 # This file is part of CubicWeb.
       
     5 #
       
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
       
     7 # terms of the GNU Lesser General Public License as published by the Free
       
     8 # Software Foundation, either version 2.1 of the License, or (at your option)
       
     9 # any later version.
       
    10 #
       
    11 # CubicWeb is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
       
    13 # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
       
    14 # details.
       
    15 #
       
    16 # You should have received a copy of the GNU Lesser General Public License along
       
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
       
    18 """Specific views for entities implementing IGeocodable"""
       
    19 
       
    20 try:
       
    21     from cubes.geocoding.views import (IGeocodableAdapter,
       
    22                                        GeocodingJsonView,
       
    23                                        GoogleMapBubbleView,
       
    24                                        GoogleMapsView,
       
    25                                        GoogeMapsLegend)
       
    26 
       
    27     from logilab.common.deprecation import class_moved
       
    28 
       
    29     msg = '[3.17] cubicweb.web.views.igeocodable moved to cubes.geocoding.views'
       
    30     IGeocodableAdapter = class_moved(IGeocodableAdapter, message=msg)
       
    31     GeocodingJsonView = class_moved(GeocodingJsonView, message=msg)
       
    32     GoogleMapBubbleView = class_moved(GoogleMapBubbleView, message=msg)
       
    33     GoogleMapsView = class_moved(GoogleMapsView, message=msg)
       
    34     GoogeMapsLegend = class_moved(GoogeMapsLegend, message=msg)
       
    35 except ImportError:
       
    36     from cubicweb.web import LOGGER
       
    37     LOGGER.warning('[3.17] igeocoding extracted to cube geocoding that was not found. try installing it.')