web/views/baseviews.py
changeset 8190 2a3c1b787688
parent 8130 85ade620056c
child 8425 b86bdc343c18
equal deleted inserted replaced
8189:2ee0ef069fa7 8190:2a3c1b787688
     1 # copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     1 # copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     3 #
     3 #
     4 # This file is part of CubicWeb.
     4 # This file is part of CubicWeb.
     5 #
     5 #
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
    82 from warnings import warn
    82 from warnings import warn
    83 
    83 
    84 from rql import nodes
    84 from rql import nodes
    85 
    85 
    86 from logilab.mtconverter import TransformError, xml_escape
    86 from logilab.mtconverter import TransformError, xml_escape
       
    87 from logilab.common.registry import yes
    87 
    88 
    88 from cubicweb import NoSelectableObject, tags
    89 from cubicweb import NoSelectableObject, tags
    89 from cubicweb.selectors import yes, empty_rset, one_etype_rset, match_kwargs
    90 from cubicweb.predicates import empty_rset, one_etype_rset, match_kwargs
    90 from cubicweb.schema import display_name
    91 from cubicweb.schema import display_name
    91 from cubicweb.view import EntityView, AnyRsetView, View
    92 from cubicweb.view import EntityView, AnyRsetView, View
    92 from cubicweb.uilib import cut
    93 from cubicweb.uilib import cut
    93 from cubicweb.web.views import calendar
    94 from cubicweb.web.views import calendar
    94 
    95