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

:organization: Logilab
sylvain thenault's avatar
sylvain thenault committed
:copyright: 2003-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
Nicolas Chauvat's avatar
Nicolas Chauvat committed
: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
sylvain thenault's avatar
sylvain thenault committed
from cubicweb.web import uicfg, formwidgets
sylvain thenault's avatar
sylvain thenault committed
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'):
sylvain thenault's avatar
sylvain thenault committed
    uicfg.primaryview_section.tag_attribute(('Link', attr), 'hidden')
sylvain thenault's avatar
sylvain thenault committed

sylvain thenault's avatar
sylvain thenault committed
uicfg.autoform_field_kwargs.tag_attribute(('Link', 'url'),
                                          {'widget': formwidgets.TextInput})
sylvain thenault's avatar
sylvain thenault committed

sylvain thenault's avatar
sylvain thenault committed

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

    def render_entity_title(self, entity):
        title = u'<a href="%s">%s</a>' % (html_escape(entity.actual_url()),
                                          html_escape(entity.title))
        self.w(u'<h1><span class="etype">%s</span> %s</h1>'
               % (entity.dc_type().capitalize(), title))
Nicolas Chauvat's avatar
Nicolas Chauvat committed

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

sylvain thenault's avatar
sylvain thenault committed

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')