
Prior to this commit, the Odoo documentation was mainly split between two repositories: odoo/odoo/doc and odoo/documentation-user. Some bits of documentation were also hosted elsewhere (e.g., wiki, upgrade, ...). This was causing several problems among which: - The theme, config, Makefile, and similar technical resources had to be duplicated. This resulted in inconsistent layout, features, and build environments from one documentation to another. - Some pages did not fit either documentation as they were relevant for both users and developers. Some were relevant to neither of the two (e.g., DB management). - Cross-doc references had to be absolute links and they broke often. - Merging large image files in the developer documentation would bloat the odoo/odoo repository. Some contributions had to be lightened to avoid merging too many images (e.g., Odoo development tutorials). - Long-time contributors to the user documentation were chilly about going through the merging process of the developer documentation because of the runbot, mergebot, `odoo-dev` repository, etc. - Some contributors would look for the developer documentation in the `odoo/documentation-user` repository. - Community issues about the user documentation were submitted on the `odoo/odoo` repository and vice-versa. Merging all documentations in one repository will allow us to have one place, one theme, one work process, and one set of tools (build environment, ...) for all of the Odoo docs. As this is a good opportunity to revamp the layout of the documentation, a brand new theme replaces the old one. It features a new way to navigate the documentation, centered on the idea of always letting the reader know what is the context (enclosing section, child pages, page structure ...) of the page they are reading. The previous theme would quickly confuse readers as they navigated the documentation and followed cross-application links. The chance is also taken to get rid of all the technical dangling parts, performance issues, and left-overs. Except for some page-specific JS scripts, the Odoo theme Sphinx extension is re-written from scratch based on the latest Sphinx release to benefit from the improvements and ease future contributions. task-2351938 task-2352371 task-2205684 task-2352544 Closes #945
163 lines
5.1 KiB
Python
163 lines
5.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
import os.path
|
|
import posixpath
|
|
import re
|
|
|
|
from docutils import nodes
|
|
from sphinx import addnodes, util, builders
|
|
from sphinx.locale import admonitionlabels
|
|
from sphinx.writers.html5 import HTML5Translator
|
|
#from urllib.request import url2pathname
|
|
|
|
# Translators inheritance chain:
|
|
# Docutils Base HTML translator: https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/docutils/writers/_html_base.py
|
|
# └── Docutils Polyglot html5 translator: https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/docutils/writers/html5_polyglot/__init__.py
|
|
# └── Sphinx Translator: https://github.com/sphinx-doc/sphinx/blob/master/sphinx/writers/html5.py
|
|
# └── Odoo Translator
|
|
|
|
ADMONITION_MAPPING = {
|
|
# ???: 'alert-success',
|
|
|
|
'note': 'alert-note',
|
|
|
|
'hint': 'alert-info',
|
|
|
|
'tip': 'alert-tip',
|
|
|
|
'seealso': 'alert-go_to',
|
|
|
|
'warning': 'alert-warning',
|
|
'attention': 'alert-warning',
|
|
'caution': 'alert-warning',
|
|
'important': 'alert-warning',
|
|
|
|
'danger': 'alert-danger',
|
|
'error': 'alert-danger',
|
|
|
|
'exercise': 'alert-exercise',
|
|
}
|
|
|
|
|
|
class BootstrapTranslator(HTML5Translator):
|
|
# Docutils specifications
|
|
head_prefix = 'head_prefix'
|
|
head = 'head'
|
|
stylesheet = 'stylesheet'
|
|
body_prefix = 'body_prefix'
|
|
body_pre_docinfo = 'body_pre_docinfo'
|
|
docinfo = 'docinfo'
|
|
body_suffix = 'body_suffix'
|
|
subtitle = 'subtitle'
|
|
header = 'header'
|
|
footer = 'footer'
|
|
html_prolog = 'html_prolog'
|
|
html_head = 'html_head'
|
|
html_title = 'html_title'
|
|
html_subtitle = 'html_subtitle'
|
|
|
|
|
|
def __init__(self, builder, *args, **kwds):
|
|
super().__init__(builder, *args, **kwds)
|
|
|
|
# Meta
|
|
self.meta = ['', ''] # HTMLWriter strips out the first two items from Translator.meta
|
|
self.add_meta('<meta http-equiv="X-UA-Compatible" content="IE=edge">')
|
|
self.add_meta('<meta name="viewport" content="width=device-width, initial-scale=1">')
|
|
|
|
# Body
|
|
self.body = []
|
|
self.fragment = self.body
|
|
self.html_body = self.body
|
|
# document title
|
|
self.title = []
|
|
self.start_document_title = 0
|
|
self.first_title = False
|
|
|
|
self.context = []
|
|
self.section_level = 0
|
|
|
|
self.first_param = 1
|
|
self.param_separator = ','
|
|
|
|
def encode(self, text):
|
|
return str(text).translate({
|
|
ord('&'): u'&',
|
|
ord('<'): u'<',
|
|
ord('"'): u'"',
|
|
ord('>'): u'>',
|
|
0xa0: u' '
|
|
})
|
|
|
|
def unknown_visit(self, node):
|
|
print("unknown node", node.__class__.__name__)
|
|
self.body.append(u'[UNKNOWN NODE {}]'.format(node.__class__.__name__))
|
|
raise nodes.SkipNode
|
|
|
|
# NOTE: seems that when we remove/comment this, we get the titles 5 times in the global toc
|
|
def visit_document(self, node):
|
|
self.first_title = True
|
|
def depart_document(self, node):
|
|
pass
|
|
|
|
# Breaks Accounting memento if commented
|
|
def visit_section(self, node):
|
|
# close "parent" or preceding section, unless this is the opening of
|
|
# the first section
|
|
if self.section_level:
|
|
self.body.append(u'</section>')
|
|
self.section_level += 1
|
|
|
|
self.body.append(self.starttag(node, 'section'))
|
|
def depart_section(self, node):
|
|
self.section_level -= 1
|
|
# close last section of document
|
|
if not self.section_level:
|
|
self.body.append(u'</section>')
|
|
|
|
# overwritten
|
|
# Class mapping:
|
|
# admonition [name] -> alert-[name]
|
|
# Enforce presence of [name]-title as class on the <p> containing the title
|
|
def visit_admonition(self, node, name=''):
|
|
# type: (nodes.Node, unicode) -> None
|
|
node_classes = ["alert"]
|
|
if name:
|
|
node_classes.append(ADMONITION_MAPPING[name])
|
|
self.body.append(self.starttag(
|
|
node, 'div', CLASS=" ".join(node_classes)))
|
|
if name:
|
|
node.insert(0, nodes.title(name, admonitionlabels[name]))
|
|
|
|
# overwritten
|
|
# Appends alert-title class to <p> if parent is an Admonition.
|
|
def visit_title(self, node):
|
|
# type: (nodes.Node) -> None
|
|
if isinstance(node.parent, nodes.Admonition):
|
|
self.body.append(self.starttag(node, 'p', CLASS='alert-title'))
|
|
else:
|
|
super().visit_title(node)
|
|
|
|
def depart_title(self, node):
|
|
if isinstance(node.parent, nodes.Admonition):
|
|
self.body.append(u"</p>")
|
|
else:
|
|
super().depart_title(node)
|
|
|
|
# overwritten
|
|
# Ensure table class is present for tables
|
|
def visit_table(self, node):
|
|
# type: (nodes.Node) -> None
|
|
self.generate_targets_for_table(node)
|
|
|
|
self._table_row_index = 0
|
|
|
|
classes = [cls.strip(u' \t\n')
|
|
for cls in self.settings.table_style.split(',')]
|
|
classes.insert(0, "docutils") # compat
|
|
classes.insert(0, "table") # compat
|
|
|
|
if 'align' in node:
|
|
classes.append('align-%s' % node['align'])
|
|
tag = self.starttag(node, 'table', CLASS=' '.join(classes))
|
|
self.body.append(tag)
|