Mercurial > libervia-website
view pages/documentation/page_meta.py @ 15:a9ba3ee12505
i18n: move `.po` file to <language>/LC_MESSAGES/sat.po
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 16 Jun 2021 19:19:55 +0200 |
parents | f47d6ba74a26 |
children | 5fd933e238bb |
line wrap: on
line source
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- from sat.core.log import getLogger from sat.core.i18n import _ log = getLogger(__name__) name = "documentation" template = "doc/doc.html" allowed_docs = None def parse_url(self, request): """URL is /[DOC_NAME]""" global allowed_docs template_data = request.template_data if allowed_docs is None: allowed_docs = sorted(self.getConfig("sub_docs_dict", {}).keys()) try: allowed_docs.remove('backend') except KeyError: log.error("backend doc not available") else: allowed_docs.insert(0, "backend") try: doc_name = self.nextPath(request) except IndexError: doc_name = 'backend' else: if doc_name not in allowed_docs: log.warning(_("unknown doc name: {doc_name}").format(doc_name=doc_name)) doc_name = 'backend' template_data['doc_name'] = doc_name template_data['all_docs'] = allowed_docs