cubicweb/web/views/embedding.py
changeset 11057 0b59724cb3f2
parent 8803 47dd517d6c6f
equal deleted inserted replaced
11052:058bb3dc685f 11057:0b59724cb3f2
       
     1 # copyright 2003-2013 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 """Objects interacting together to provides the external page embeding
       
    19 functionality.
       
    20 """
       
    21 
       
    22 from logilab.common.deprecation import class_moved, moved
       
    23 
       
    24 try:
       
    25     from cubes.embed.views import *
       
    26 
       
    27     IEmbedableAdapter = class_moved(IEmbedableAdapter, message='[3.17] IEmbedableAdapter moved to cubes.embed.views')
       
    28     ExternalTemplate = class_moved(ExternalTemplate, message='[3.17] IEmbedableAdapter moved to cubes.embed.views')
       
    29     EmbedController = class_moved(EmbedController, message='[3.17] IEmbedableAdapter moved to cubes.embed.views')
       
    30     entity_has_embedable_url = moved('cubes.embed.views', 'entity_has_embedable_url')
       
    31     EmbedAction = class_moved(EmbedAction, message='[3.17] EmbedAction moved to cubes.embed.views')
       
    32     replace_href = class_moved(replace_href, message='[3.17] replace_href moved to cubes.embed.views')
       
    33     embed_external_page = moved('cubes.embed.views', 'embed_external_page')
       
    34     absolutize_links = class_moved(absolutize_links, message='[3.17] absolutize_links moved to cubes.embed.views')
       
    35     prefix_links = moved('cubes.embed.views', 'prefix_links')
       
    36 except ImportError:
       
    37     from cubicweb.web import LOGGER
       
    38     LOGGER.warning('[3.17] embedding extracted to cube embed that was not found. try installing it.')