web/component.py
changeset 8190 2a3c1b787688
parent 8102 619d41a4c770
child 8695 358d8bed9626
child 8726 e08ab56ea2ac
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
    30 from cubicweb import Unauthorized, role, target, tags
    30 from cubicweb import Unauthorized, role, target, tags
    31 from cubicweb.schema import display_name
    31 from cubicweb.schema import display_name
    32 from cubicweb.uilib import js, domid
    32 from cubicweb.uilib import js, domid
    33 from cubicweb.utils import json_dumps, js_href
    33 from cubicweb.utils import json_dumps, js_href
    34 from cubicweb.view import ReloadableMixIn, Component
    34 from cubicweb.view import ReloadableMixIn, Component
    35 from cubicweb.selectors import (no_cnx, paginated_rset, one_line_rset,
    35 from cubicweb.predicates import (no_cnx, paginated_rset, one_line_rset,
    36                                 non_final_entity, partial_relation_possible,
    36                                 non_final_entity, partial_relation_possible,
    37                                 partial_has_related_entities)
    37                                 partial_has_related_entities)
    38 from cubicweb.appobject import AppObject
    38 from cubicweb.appobject import AppObject
    39 from cubicweb.web import INTERNAL_FIELD_VALUE, stdmsgs
    39 from cubicweb.web import INTERNAL_FIELD_VALUE, stdmsgs
    40 
    40