# HG changeset patch # User Julien Jehannet # Date 1234367178 -3600 # Node ID 105893288777c79c1e938fb84f61d5340b66e19b # Parent 33957ff2b7901692c570875f19fe5af8d91138ca simplify css style diff -r 33957ff2b790 -r 105893288777 web/views/basetemplates.py --- a/web/views/basetemplates.py Wed Feb 11 16:41:19 2009 +0100 +++ b/web/views/basetemplates.py Wed Feb 11 16:46:18 2009 +0100 @@ -56,8 +56,9 @@ title = 'logged out' def content(self, w): + # FIXME Deprecated code ? msg = self.req._('you have been logged out') - w(u'

%s

\n' % msg) + w(u'

%s

\n' % msg) if self.config['anonymous-user']: indexurl = self.build_url('view', vid='index', __message=msg) w(u'

%s

' % ( diff -r 33957ff2b790 -r 105893288777 web/views/bookmark.py --- a/web/views/bookmark.py Wed Feb 11 16:41:19 2009 +0100 +++ b/web/views/bookmark.py Wed Feb 11 16:46:18 2009 +0100 @@ -68,9 +68,9 @@ dlink = u'[-]' % ( bookmark.eid, _('delete this bookmark')) label = '%s %s' % (dlink, label) - box.append(RawBoxItem(label, liclass=u'invisible')) + box.append(RawBoxItem(label)) if eschema.has_perm(req, 'add') and rschema.has_perm(req, 'add', toeid=ueid): - boxmenu = BoxMenu(req._('manage bookmarks'), liclass=u'invisible') + boxmenu = BoxMenu(req._('manage bookmarks')) linkto = 'bookmarked_by:%s:subject' % ueid # use a relative path so that we can move the application without # loosing bookmarks diff -r 33957ff2b790 -r 105893288777 web/views/boxes.py --- a/web/views/boxes.py Wed Feb 11 16:41:19 2009 +0100 +++ b/web/views/boxes.py Wed Feb 11 16:46:18 2009 +0100 @@ -143,7 +143,7 @@ - + """