Skip to content
Snippets Groups Projects
views.py 2.36 KiB
Newer Older
Nicolas Chauvat's avatar
Nicolas Chauvat committed
"""Specific views for links

:organization: Logilab
:copyright: 2003-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
"""
__docformat__ = "restructuredtext en"
_ = unicode

from logilab.mtconverter import html_escape

sylvain thenault's avatar
sylvain thenault committed
from cubicweb.selectors import implements
from cubicweb.view import EntityView
from cubicweb.web import uicfg
from cubicweb.web.views import primary, baseviews
from cubicweb.web.views import xbel, bookmark
sylvain thenault's avatar
sylvain thenault committed
for attr in ('title', 'url', 'embed', 'description'):
    uicfg.rdisplay.tag_attribute({}, 'Card', attr)

class LinkPrimaryView(primary.PrimaryView):
    __select__ = implements('Link')
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    show_attr_label = False

    def content_title(self, entity):
        return u'<a href="%s">%s</a>' % (html_escape(entity.actual_url()),
                                         html_escape(entity.title))

    def summary(self, entity):
        return entity.printable_value('description')
sylvain thenault's avatar
sylvain thenault committed

class LinkOneLineView(baseviews.OneLineView):
    __select__ = implements('Link')

Nicolas Chauvat's avatar
Nicolas Chauvat committed
    def cell_call(self, row, col):
        entity = self.complete_entity(row, col)
        descr = entity.printable_value('description', format='text/plain')
        descr = descr and descr.splitlines()[0]
        values = {'title': html_escape(entity.title),
                  'url': html_escape(entity.absolute_url()),
                  'description': html_escape(descr),
                  }
        self.w(u'<a href="%(url)s" title="%(description)s">%(title)s</a>'
               % values)
        self.w(u'&nbsp;[<a href="%s">%s</a>]'
               % (html_escape(entity.actual_url()),
                  self.req._('follow')))


sylvain thenault's avatar
sylvain thenault committed
class LinkView(EntityView):
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    id = 'link'
sylvain thenault's avatar
sylvain thenault committed
    __select__ = implements('Link')
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    title = _('link')
sylvain thenault's avatar
sylvain thenault committed

Nicolas Chauvat's avatar
Nicolas Chauvat committed
    def cell_call(self, row, col):
        entity = self.complete_entity(row, col)
        values = {'title': html_escape(entity.title),
                  'url': html_escape(entity.actual_url()),
                  'description': html_escape(entity.printable_value('description')),
                  }
        self.w(u'<a href="%(url)s" title="%(description)s">%(title)s</a>'
               % values)

sylvain thenault's avatar
sylvain thenault committed
class XbelItemLinkView(xbel.XbelItemView):
    __select__ = implements('Link')
Nicolas Chauvat's avatar
Nicolas Chauvat committed

    def url(self, entity):
        return entity.url


sylvain thenault's avatar
sylvain thenault committed
class LinkFollowAction(bookmark.FollowAction):
    __select__ = implements('Link')