web/views/editviews.py
changeset 8190 2a3c1b787688
parent 6023 900772fd9caa
child 8748 f5027f8d2478
equal deleted inserted replaced
8189:2ee0ef069fa7 8190:2a3c1b787688
     1 # copyright 2003-2010 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
    23 from logilab.common.decorators import cached
    23 from logilab.common.decorators import cached
    24 from logilab.mtconverter import xml_escape
    24 from logilab.mtconverter import xml_escape
    25 
    25 
    26 from cubicweb import typed_eid
    26 from cubicweb import typed_eid
    27 from cubicweb.view import EntityView, StartupView
    27 from cubicweb.view import EntityView, StartupView
    28 from cubicweb.selectors import (one_line_rset, non_final_entity,
    28 from cubicweb.predicates import (one_line_rset, non_final_entity,
    29                                 match_search_state)
    29                                  match_search_state)
    30 from cubicweb.web import httpcache
    30 from cubicweb.web import httpcache
    31 from cubicweb.web.views import baseviews, linksearch_select_url
    31 from cubicweb.web.views import baseviews, linksearch_select_url
    32 
    32 
    33 
    33 
    34 class SearchForAssociationView(EntityView):
    34 class SearchForAssociationView(EntityView):