web/views/actions.py
changeset 554 f412343c89ad
parent 431 18b4dd650ef8
child 631 99f5852f8604
child 1213 06789a89f91f
equal deleted inserted replaced
553:c69eac8298c0 554:f412343c89ad
     4 :copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     4 :copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
     6 """
     6 """
     7 __docformat__ = "restructuredtext en"
     7 __docformat__ = "restructuredtext en"
     8 
     8 
     9 from cubicweb import UnknownEid
     9 from cubicweb.common.selectors import (searchstate_accept, match_user_group, yes,
    10 from cubicweb.common.selectors import *
    10                                        one_line_rset, two_lines_rset, one_etype_rset,
    11 
    11                                        authenticated_user,
    12 from cubicweb.web.action import (Action, EntityAction,  LinkToEntityAction,
    12                                        match_search_state, chainfirst, chainall)
    13                               LinkToEntityAction2)
    13 
       
    14 from cubicweb.web.action import Action, EntityAction,  LinkToEntityAction
    14 from cubicweb.web.views import linksearch_select_url, linksearch_match
    15 from cubicweb.web.views import linksearch_select_url, linksearch_match
    15 from cubicweb.web.views.baseviews import vid_from_rset
    16 from cubicweb.web.views.baseviews import vid_from_rset
    16 
    17 
    17 _ = unicode
    18 _ = unicode
    18 
    19