drop LinToEntityAction2, only used by the comment cube
"""abstract action classes for CubicWeb web client:organization: Logilab:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr"""__docformat__="restructuredtext en"fromcubicwebimporttargetfromcubicweb.common.appobjectimportAppRsetObjectfromcubicweb.common.registerersimportaction_registererfromcubicweb.common.selectorsimportuser_can_add_etype, \match_search_state,searchstate_accept_one, \searchstate_accept_one_but_etype_=unicodeclassAction(AppRsetObject):"""abstract action. Handle the .search_states attribute to match request search state. """__registry__='actions'__registerer__=action_registererproperty_defs={'visible':dict(type='Boolean',default=True,help=_('display the action or not')),'order':dict(type='Int',default=99,help=_('display order of the action')),'category':dict(type='String',default='moreactions',vocabulary=('mainactions','moreactions','addrelated','useractions','siteactions','hidden'),help=_('context where this component should be displayed')),}site_wide=True# don't want user to configuration actions epropertiescategory='moreactions'defurl(self):"""return the url associated with this action"""raiseNotImplementedErrordefhtml_class(self):ifself.req.selected(self.url()):return'selected'ifself.category:return'box'+self.category.capitalize()classUnregisteredAction(Action):"""non registered action used to build boxes. Unless you set them explicitly, .vreg and .schema attributes at least are None. """category=Noneid=Nonedef__init__(self,req,rset,title,path,**kwargs):Action.__init__(self,req,rset)self.title=req._(title)self._path=pathself.__dict__.update(kwargs)defurl(self):returnself._pathclassAddEntityAction(Action):"""link to the entity creation form. Concrete class must set .etype and may override .vid """__selectors__=(user_can_add_etype,)vid='creation'etype=Nonedefurl(self):returnself.build_url(vid=self.vid,etype=self.etype)classEntityAction(Action):"""an action for an entity. By default entity actions are only displayable on single entity result if accept match. """# XXX deprecateclassLinkToEntityAction(Action):"""base class for actions consisting to create a new object with an initial relation set to an entity. Additionaly to EntityAction behaviour, this class is parametrized using .etype, .rtype and .target attributes to check if the action apply and if the logged user has access to it """defmy_selector(cls,req,rset,row=None,col=0,**kwargs):returnchainall(match_search_state('normal'),one_line_rset,relation_possible(cls.rtype,role(cls),cls.etype,permission='add'),may_add_relation(cls.rtype,role(cls)))__selectors__=(my_selector,)registered=accepts_compat(Action.registered.im_func)category='addrelated'defurl(self):current_entity=self.rset.get_entity(self.rowor0,self.color0)linkto='%s:%s:%s'%(self.rtype,current_entity.eid,target(self))returnself.build_url(vid='creation',etype=self.etype,__linkto=linkto,__redirectpath=current_entity.rest_path(),# should not be url quoted!__redirectvid=self.req.form.get('__redirectvid',''))