Mercurial > libervia-backend
view src/tools/common/data_objects.py @ 2169:f472179305a1
tools(templates): workflow improvments:
- template theme can be specified in parenthesis: (some_theme)path/to/template.html. Withtout parenthesis, "default" is used
- static content are supposed to be in [theme]/static, error pages in [theme]/error/[err_code].html
- default page are used in some case (2 for now): if error page with specified code doesn't exists, a base page is used, and if a page doesn't exist for a theme, the same one for default theme is looked for
- CSS files are automatically found for HTML pages
- CSS files can be split, the'll be added in the template according to the page requested.
- theme CSS file is looked for, and if not found the default theme equivalent is looked for.
- each element of a path can be associated to a CSS file, and styles.css is always there. For instance if blog/articles.html is requested, the following CSS can be included: "styles.css", "blog.css", "blog_article.css". They all must be in /static
- if the automatic finding of CSS files is not wanted, css_files arguments can be used instead, with full relative path (i.e. including theme)
- CSS files can be merged and included inline with css_inline argument
- root_path can be specified, it will be used as a prefix for static files
- requested theme (which may differ from actual theme, e.g. if the template is not found and default one is used instead) is available in template with "theme" variable
- added getThemeAndRoot method to retrieve theme and theme root path from template
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 05 Mar 2017 23:41:10 +0100 |
parents | e67e8cd24141 |
children | cf6c539672c7 |
line wrap: on
line source
#!/usr/bin/env python2 # -*- coding: utf-8 -*- # SAT: a jabber client # Copyright (C) 2009-2016 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """ Objects handling bridge data, with jinja2 safe markup handling""" from sat.tools.common import data_format try: from jinja2 import Markup as safe except ImportError: safe = unicode class BlogItem(object): def __init__(self, mb_data): self.mb_data = mb_data self._tags = None self._groups = None self._comments = None @property def id(self): return self.mb_data.get(u'id') @property def atom_id(self): return self.mb_data.get(u'atom_id') @property def published(self): return self.mb_data.get(u'published') @property def updated(self): return self.mb_data.get(u'updated') @property def author(self): return self.mb_data.get(u'author') @property def author_jid(self): return self.mb_data.get(u'author_jid') @property def author_jid_verified(self): return self.mb_data.get(u'author_jid_verified') @property def author_email(self): return self.mb_data.get(u'author_email') @property def tags(self): if self._tags is None: self._tags = data_format.dict2iter('tag', self.mb_data) return self._tags @property def groups(self): if self._groups is None: self._groups = data_format.dict2iter('group', self.mb_data) return self._groups @property def title(self): return self.mb_data.get(u'title') @property def title_xhtml(self): try: return safe(self.mb_data[u'title_xhtml']) except KeyError: return None @property def content(self): return self.mb_data.get(u'content') @property def content_xhtml(self): try: return safe(self.mb_data[u'content_xhtml']) except KeyError: return None @property def comments(self): if self._comments is None: self._comments = data_format.dict2iterdict(u'comments', self.mb_data, (u'node', u'service')) return self._comments @property def comments_service(self): return self.mb_data.get(u'comments_service') @property def comments_node(self): return self.mb_data.get(u'comments_node') class BlogItems(object): def __init__(self, mb_data): self.mb_data = mb_data self.items = [BlogItem(i) for i in mb_data[0]] self.metadata = mb_data[1] @property def service(self): return self.metadata[u'service'] @property def node(self): return self.metadata[u'node'] @property def uri(self): return self.metadata[u'uri'] def __len__(self): return self.items.__len__() def __missing__(self, key): return self.items.__missing__(key) def __getitem__(self, key): return self.items.__getitem__(key) def __iter__(self): return self.items.__iter__() def __reversed__(self): return self.items.__reversed__() def __contains__(self, item): return self.items.__contains__(item)