2008-08-23 22:25:40 +00:00
|
|
|
"""
|
|
|
|
Sphinx plugins for Django documentation.
|
|
|
|
"""
|
2012-04-29 17:58:00 +00:00
|
|
|
import json
|
2010-07-25 20:39:40 +00:00
|
|
|
import os
|
2010-10-27 15:35:07 +00:00
|
|
|
import re
|
2008-08-23 22:25:40 +00:00
|
|
|
|
2013-09-23 22:23:47 +00:00
|
|
|
from docutils import nodes
|
2017-05-24 14:39:51 +00:00
|
|
|
from docutils.parsers.rst import Directive, directives
|
2018-01-20 17:38:48 +00:00
|
|
|
from docutils.statemachine import ViewList
|
2015-11-16 16:33:34 +00:00
|
|
|
from sphinx import addnodes
|
2010-07-25 20:39:40 +00:00
|
|
|
from sphinx.builders.html import StandaloneHTMLBuilder
|
2018-01-20 17:38:48 +00:00
|
|
|
from sphinx.directives import CodeBlock
|
2016-01-12 01:59:34 +00:00
|
|
|
from sphinx.domains.std import Cmdoption
|
2015-01-28 12:35:27 +00:00
|
|
|
from sphinx.util.console import bold
|
2013-09-23 22:23:47 +00:00
|
|
|
from sphinx.util.nodes import set_source_info
|
2018-03-23 00:30:03 +00:00
|
|
|
from sphinx.writers.html import HTMLTranslator
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2010-10-27 15:35:07 +00:00
|
|
|
# RE for option descriptions without a '--' prefix
|
|
|
|
simple_option_desc_re = re.compile(
|
|
|
|
r'([-_a-zA-Z0-9]+)(\s*.*?)(?=,\s+(?:/|-|--)|$)')
|
2008-08-23 22:25:40 +00:00
|
|
|
|
2013-11-02 19:37:48 +00:00
|
|
|
|
2008-08-23 22:25:40 +00:00
|
|
|
def setup(app):
|
|
|
|
app.add_crossref_type(
|
2013-11-02 19:37:48 +00:00
|
|
|
directivename="setting",
|
|
|
|
rolename="setting",
|
|
|
|
indextemplate="pair: %s; setting",
|
2008-08-23 22:25:40 +00:00
|
|
|
)
|
|
|
|
app.add_crossref_type(
|
2013-11-02 19:37:48 +00:00
|
|
|
directivename="templatetag",
|
|
|
|
rolename="ttag",
|
|
|
|
indextemplate="pair: %s; template tag"
|
2008-08-23 22:25:40 +00:00
|
|
|
)
|
|
|
|
app.add_crossref_type(
|
2013-11-02 19:37:48 +00:00
|
|
|
directivename="templatefilter",
|
|
|
|
rolename="tfilter",
|
|
|
|
indextemplate="pair: %s; template filter"
|
2008-08-23 22:25:40 +00:00
|
|
|
)
|
|
|
|
app.add_crossref_type(
|
2013-11-02 19:37:48 +00:00
|
|
|
directivename="fieldlookup",
|
|
|
|
rolename="lookup",
|
|
|
|
indextemplate="pair: %s; field lookup type",
|
2008-08-23 22:25:40 +00:00
|
|
|
)
|
|
|
|
app.add_description_unit(
|
2013-11-02 19:37:48 +00:00
|
|
|
directivename="django-admin",
|
|
|
|
rolename="djadmin",
|
|
|
|
indextemplate="pair: %s; django-admin command",
|
|
|
|
parse_node=parse_django_admin_node,
|
2008-08-23 22:25:40 +00:00
|
|
|
)
|
2016-01-12 01:59:34 +00:00
|
|
|
app.add_directive('django-admin-option', Cmdoption)
|
2009-03-09 01:37:17 +00:00
|
|
|
app.add_config_value('django_next_version', '0.0', True)
|
2010-08-18 16:31:15 +00:00
|
|
|
app.add_directive('versionadded', VersionDirective)
|
|
|
|
app.add_directive('versionchanged', VersionDirective)
|
2010-05-08 14:31:20 +00:00
|
|
|
app.add_builder(DjangoStandaloneHTMLBuilder)
|
|
|
|
|
2013-09-23 22:23:47 +00:00
|
|
|
# register the snippet directive
|
|
|
|
app.add_directive('snippet', SnippetWithFilename)
|
|
|
|
# register a node for snippet directive so that the xml parser
|
|
|
|
# knows how to handle the enter/exit parsing event
|
|
|
|
app.add_node(snippet_with_filename,
|
|
|
|
html=(visit_snippet, depart_snippet_literal),
|
|
|
|
latex=(visit_snippet_latex, depart_snippet_latex),
|
|
|
|
man=(visit_snippet_literal, depart_snippet_literal),
|
|
|
|
text=(visit_snippet_literal, depart_snippet_literal),
|
|
|
|
texinfo=(visit_snippet_literal, depart_snippet_literal))
|
2016-12-05 19:00:10 +00:00
|
|
|
app.set_translator('djangohtml', DjangoHTMLTranslator)
|
2016-12-14 19:31:29 +00:00
|
|
|
app.set_translator('json', DjangoHTMLTranslator)
|
2018-01-20 17:38:48 +00:00
|
|
|
app.add_node(
|
|
|
|
ConsoleNode,
|
|
|
|
html=(visit_console_html, None),
|
|
|
|
latex=(visit_console_dummy, depart_console_dummy),
|
|
|
|
man=(visit_console_dummy, depart_console_dummy),
|
|
|
|
text=(visit_console_dummy, depart_console_dummy),
|
|
|
|
texinfo=(visit_console_dummy, depart_console_dummy),
|
|
|
|
)
|
|
|
|
app.add_directive('console', ConsoleDirective)
|
|
|
|
app.connect('html-page-context', html_page_context_hook)
|
2016-01-13 16:33:25 +00:00
|
|
|
return {'parallel_read_safe': True}
|
2013-09-23 22:23:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
class snippet_with_filename(nodes.literal_block):
|
|
|
|
"""
|
|
|
|
Subclass the literal_block to override the visit/depart event handlers
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def visit_snippet_literal(self, node):
|
|
|
|
"""
|
|
|
|
default literal block handler
|
|
|
|
"""
|
|
|
|
self.visit_literal_block(node)
|
|
|
|
|
|
|
|
|
|
|
|
def depart_snippet_literal(self, node):
|
|
|
|
"""
|
|
|
|
default literal block handler
|
|
|
|
"""
|
|
|
|
self.depart_literal_block(node)
|
|
|
|
|
|
|
|
|
|
|
|
def visit_snippet(self, node):
|
|
|
|
"""
|
|
|
|
HTML document generator visit handler
|
|
|
|
"""
|
|
|
|
lang = self.highlightlang
|
|
|
|
linenos = node.rawsource.count('\n') >= self.highlightlinenothreshold - 1
|
|
|
|
fname = node['filename']
|
|
|
|
highlight_args = node.get('highlight_args', {})
|
2013-11-26 20:31:52 +00:00
|
|
|
if 'language' in node:
|
2013-09-23 22:23:47 +00:00
|
|
|
# code-block directives
|
|
|
|
lang = node['language']
|
|
|
|
highlight_args['force'] = True
|
2013-11-26 20:31:52 +00:00
|
|
|
if 'linenos' in node:
|
2013-09-23 22:23:47 +00:00
|
|
|
linenos = node['linenos']
|
|
|
|
|
|
|
|
def warner(msg):
|
|
|
|
self.builder.warn(msg, (self.builder.current_docname, node.line))
|
|
|
|
|
|
|
|
highlighted = self.highlighter.highlight_block(node.rawsource, lang,
|
|
|
|
warn=warner,
|
|
|
|
linenos=linenos,
|
|
|
|
**highlight_args)
|
|
|
|
starttag = self.starttag(node, 'div', suffix='',
|
2016-07-04 13:06:57 +00:00
|
|
|
CLASS='highlight-%s snippet' % lang)
|
2013-09-23 22:23:47 +00:00
|
|
|
self.body.append(starttag)
|
|
|
|
self.body.append('<div class="snippet-filename">%s</div>\n''' % (fname,))
|
|
|
|
self.body.append(highlighted)
|
|
|
|
self.body.append('</div>\n')
|
|
|
|
raise nodes.SkipNode
|
|
|
|
|
|
|
|
|
|
|
|
def visit_snippet_latex(self, node):
|
|
|
|
"""
|
|
|
|
Latex document generator visit handler
|
|
|
|
"""
|
2015-11-16 16:13:09 +00:00
|
|
|
code = node.rawsource.rstrip('\n')
|
2013-09-23 22:23:47 +00:00
|
|
|
|
|
|
|
lang = self.hlsettingstack[-1][0]
|
|
|
|
linenos = code.count('\n') >= self.hlsettingstack[-1][1] - 1
|
|
|
|
fname = node['filename']
|
|
|
|
highlight_args = node.get('highlight_args', {})
|
|
|
|
if 'language' in node:
|
|
|
|
# code-block directives
|
|
|
|
lang = node['language']
|
|
|
|
highlight_args['force'] = True
|
|
|
|
if 'linenos' in node:
|
|
|
|
linenos = node['linenos']
|
|
|
|
|
|
|
|
def warner(msg):
|
|
|
|
self.builder.warn(msg, (self.curfilestack[-1], node.line))
|
|
|
|
|
|
|
|
hlcode = self.highlighter.highlight_block(code, lang, warn=warner,
|
|
|
|
linenos=linenos,
|
|
|
|
**highlight_args)
|
|
|
|
|
2015-11-16 16:13:09 +00:00
|
|
|
self.body.append(
|
|
|
|
'\n{\\colorbox[rgb]{0.9,0.9,0.9}'
|
|
|
|
'{\\makebox[\\textwidth][l]'
|
|
|
|
'{\\small\\texttt{%s}}}}\n' % (
|
|
|
|
# Some filenames have '_', which is special in latex.
|
|
|
|
fname.replace('_', r'\_'),
|
|
|
|
)
|
|
|
|
)
|
2013-09-23 22:23:47 +00:00
|
|
|
|
|
|
|
if self.table:
|
|
|
|
hlcode = hlcode.replace('\\begin{Verbatim}',
|
|
|
|
'\\begin{OriginalVerbatim}')
|
|
|
|
self.table.has_problematic = True
|
|
|
|
self.table.has_verbatim = True
|
|
|
|
|
|
|
|
hlcode = hlcode.rstrip()[:-14] # strip \end{Verbatim}
|
|
|
|
hlcode = hlcode.rstrip() + '\n'
|
|
|
|
self.body.append('\n' + hlcode + '\\end{%sVerbatim}\n' %
|
|
|
|
(self.table and 'Original' or ''))
|
2015-11-16 16:13:09 +00:00
|
|
|
|
|
|
|
# Prevent rawsource from appearing in output a second time.
|
|
|
|
raise nodes.SkipNode
|
|
|
|
|
|
|
|
|
|
|
|
def depart_snippet_latex(self, node):
|
|
|
|
"""
|
|
|
|
Latex document generator depart handler.
|
|
|
|
"""
|
|
|
|
pass
|
2013-09-23 22:23:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SnippetWithFilename(Directive):
|
|
|
|
"""
|
|
|
|
The 'snippet' directive that allows to add the filename (optional)
|
|
|
|
of a code snippet in the document. This is modeled after CodeBlock.
|
|
|
|
"""
|
|
|
|
has_content = True
|
|
|
|
optional_arguments = 1
|
|
|
|
option_spec = {'filename': directives.unchanged_required}
|
|
|
|
|
|
|
|
def run(self):
|
2013-12-06 18:06:59 +00:00
|
|
|
code = '\n'.join(self.content)
|
2013-09-23 22:23:47 +00:00
|
|
|
|
|
|
|
literal = snippet_with_filename(code, code)
|
|
|
|
if self.arguments:
|
|
|
|
literal['language'] = self.arguments[0]
|
|
|
|
literal['filename'] = self.options['filename']
|
|
|
|
set_source_info(self, literal)
|
|
|
|
return [literal]
|
|
|
|
|
2010-08-18 16:31:15 +00:00
|
|
|
|
|
|
|
class VersionDirective(Directive):
|
|
|
|
has_content = True
|
|
|
|
required_arguments = 1
|
|
|
|
optional_arguments = 1
|
|
|
|
final_argument_whitespace = True
|
|
|
|
option_spec = {}
|
|
|
|
|
|
|
|
def run(self):
|
2013-03-25 05:48:23 +00:00
|
|
|
if len(self.arguments) > 1:
|
|
|
|
msg = """Only one argument accepted for directive '{directive_name}::'.
|
|
|
|
Comments should be provided as content,
|
|
|
|
not as an extra argument.""".format(directive_name=self.name)
|
2013-03-25 05:53:48 +00:00
|
|
|
raise self.error(msg)
|
2013-03-25 05:48:23 +00:00
|
|
|
|
2010-08-18 16:31:15 +00:00
|
|
|
env = self.state.document.settings.env
|
|
|
|
ret = []
|
|
|
|
node = addnodes.versionmodified()
|
|
|
|
ret.append(node)
|
2013-03-25 05:48:23 +00:00
|
|
|
|
2013-02-09 14:16:10 +00:00
|
|
|
if self.arguments[0] == env.config.django_next_version:
|
2010-08-18 16:31:15 +00:00
|
|
|
node['version'] = "Development version"
|
2013-02-09 14:16:10 +00:00
|
|
|
else:
|
|
|
|
node['version'] = self.arguments[0]
|
2013-03-25 05:48:23 +00:00
|
|
|
|
2010-08-18 16:31:15 +00:00
|
|
|
node['type'] = self.name
|
2013-03-25 05:48:23 +00:00
|
|
|
if self.content:
|
|
|
|
self.state.nested_parse(self.content, self.content_offset, node)
|
2010-08-18 16:31:15 +00:00
|
|
|
env.note_versionchange(node['type'], node['version'], node, self.lineno)
|
|
|
|
return ret
|
2009-03-09 01:37:17 +00:00
|
|
|
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2017-05-17 10:09:12 +00:00
|
|
|
class DjangoHTMLTranslator(HTMLTranslator):
|
2008-08-23 22:25:40 +00:00
|
|
|
"""
|
|
|
|
Django-specific reST to HTML tweaks.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Don't use border=1, which docutils does by default.
|
|
|
|
def visit_table(self, node):
|
2013-07-31 13:24:29 +00:00
|
|
|
self.context.append(self.compact_p)
|
|
|
|
self.compact_p = True
|
2013-11-02 19:37:48 +00:00
|
|
|
self._table_row_index = 0 # Needed by Sphinx
|
2008-08-23 22:25:40 +00:00
|
|
|
self.body.append(self.starttag(node, 'table', CLASS='docutils'))
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2013-07-31 13:24:29 +00:00
|
|
|
def depart_table(self, node):
|
|
|
|
self.compact_p = self.context.pop()
|
|
|
|
self.body.append('</table>\n')
|
|
|
|
|
2008-08-26 19:38:27 +00:00
|
|
|
def visit_desc_parameterlist(self, node):
|
2014-01-24 13:52:43 +00:00
|
|
|
self.body.append('(') # by default sphinx puts <big> around the "("
|
2008-08-26 19:38:27 +00:00
|
|
|
self.first_param = 1
|
2014-01-24 13:52:43 +00:00
|
|
|
self.optional_param_level = 0
|
2011-05-15 23:02:36 +00:00
|
|
|
self.param_separator = node.child_text_separator
|
2017-06-01 23:08:59 +00:00
|
|
|
self.required_params_left = sum(isinstance(c, addnodes.desc_parameter) for c in node.children)
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2008-08-26 19:38:27 +00:00
|
|
|
def depart_desc_parameterlist(self, node):
|
|
|
|
self.body.append(')')
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2008-09-02 03:40:42 +00:00
|
|
|
#
|
2010-07-25 20:39:40 +00:00
|
|
|
# Turn the "new in version" stuff (versionadded/versionchanged) into a
|
2008-09-02 03:40:42 +00:00
|
|
|
# better callout -- the Sphinx default is just a little span,
|
|
|
|
# which is a bit less obvious that I'd like.
|
|
|
|
#
|
2010-07-24 10:21:21 +00:00
|
|
|
# FIXME: these messages are all hardcoded in English. We need to change
|
2013-03-28 17:16:53 +00:00
|
|
|
# that to accommodate other language docs, but I can't work out how to make
|
2010-07-25 20:39:40 +00:00
|
|
|
# that work.
|
2008-09-02 03:40:42 +00:00
|
|
|
#
|
|
|
|
version_text = {
|
2013-11-02 19:37:48 +00:00
|
|
|
'versionchanged': 'Changed in Django %s',
|
|
|
|
'versionadded': 'New in Django %s',
|
2008-09-02 03:40:42 +00:00
|
|
|
}
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2008-09-02 03:40:42 +00:00
|
|
|
def visit_versionmodified(self, node):
|
|
|
|
self.body.append(
|
|
|
|
self.starttag(node, 'div', CLASS=node['type'])
|
|
|
|
)
|
2014-06-07 00:31:23 +00:00
|
|
|
version_text = self.version_text.get(node['type'])
|
|
|
|
if version_text:
|
|
|
|
title = "%s%s" % (
|
|
|
|
version_text % node['version'],
|
2017-11-29 16:54:34 +00:00
|
|
|
":" if node else "."
|
2014-06-07 00:31:23 +00:00
|
|
|
)
|
|
|
|
self.body.append('<span class="title">%s</span> ' % title)
|
2010-07-25 20:39:40 +00:00
|
|
|
|
2008-09-02 03:40:42 +00:00
|
|
|
def depart_versionmodified(self, node):
|
|
|
|
self.body.append("</div>\n")
|
2008-12-07 04:00:08 +00:00
|
|
|
|
2010-07-25 20:39:40 +00:00
|
|
|
# Give each section a unique ID -- nice for custom CSS hooks
|
|
|
|
def visit_section(self, node):
|
|
|
|
old_ids = node.get('ids', [])
|
|
|
|
node['ids'] = ['s-' + i for i in old_ids]
|
|
|
|
node['ids'].extend(old_ids)
|
2017-05-17 10:09:12 +00:00
|
|
|
super().visit_section(node)
|
2010-07-25 20:39:40 +00:00
|
|
|
node['ids'] = old_ids
|
2008-08-23 22:25:40 +00:00
|
|
|
|
2013-11-03 00:37:15 +00:00
|
|
|
|
2008-08-23 22:25:40 +00:00
|
|
|
def parse_django_admin_node(env, sig, signode):
|
|
|
|
command = sig.split(' ')[0]
|
2016-01-12 01:59:34 +00:00
|
|
|
env.ref_context['std:program'] = command
|
2014-07-26 11:21:52 +00:00
|
|
|
title = "django-admin %s" % sig
|
2010-07-25 20:39:40 +00:00
|
|
|
signode += addnodes.desc_name(title, title)
|
2016-01-12 01:59:34 +00:00
|
|
|
return command
|
2009-07-03 05:40:46 +00:00
|
|
|
|
2010-05-08 14:31:20 +00:00
|
|
|
|
2010-07-25 20:39:40 +00:00
|
|
|
class DjangoStandaloneHTMLBuilder(StandaloneHTMLBuilder):
|
2010-05-08 14:31:20 +00:00
|
|
|
"""
|
|
|
|
Subclass to add some extra things we need.
|
|
|
|
"""
|
|
|
|
|
|
|
|
name = 'djangohtml'
|
|
|
|
|
|
|
|
def finish(self):
|
2017-01-22 06:57:14 +00:00
|
|
|
super().finish()
|
2010-05-08 14:31:20 +00:00
|
|
|
self.info(bold("writing templatebuiltins.js..."))
|
2010-11-20 01:37:54 +00:00
|
|
|
xrefs = self.env.domaindata["std"]["objects"]
|
2010-11-20 21:00:41 +00:00
|
|
|
templatebuiltins = {
|
2016-11-14 22:40:28 +00:00
|
|
|
"ttags": [
|
|
|
|
n for ((t, n), (k, a)) in xrefs.items()
|
|
|
|
if t == "templatetag" and k == "ref/templates/builtins"
|
|
|
|
],
|
|
|
|
"tfilters": [
|
|
|
|
n for ((t, n), (k, a)) in xrefs.items()
|
|
|
|
if t == "templatefilter" and k == "ref/templates/builtins"
|
|
|
|
],
|
2010-11-20 21:00:41 +00:00
|
|
|
}
|
2010-05-08 14:31:20 +00:00
|
|
|
outfilename = os.path.join(self.outdir, "templatebuiltins.js")
|
2013-02-24 14:44:50 +00:00
|
|
|
with open(outfilename, 'w') as fp:
|
2012-05-05 12:01:38 +00:00
|
|
|
fp.write('var django_template_builtins = ')
|
|
|
|
json.dump(templatebuiltins, fp)
|
|
|
|
fp.write(';\n')
|
2018-01-20 17:38:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ConsoleNode(nodes.literal_block):
|
|
|
|
"""
|
|
|
|
Custom node to override the visit/depart event handlers at registration
|
|
|
|
time. Wrap a literal_block object and defer to it.
|
|
|
|
"""
|
|
|
|
def __init__(self, litblk_obj):
|
|
|
|
self.wrapped = litblk_obj
|
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
if attr == 'wrapped':
|
|
|
|
return self.__dict__.wrapped
|
|
|
|
return getattr(self.wrapped, attr)
|
|
|
|
|
|
|
|
|
|
|
|
def visit_console_dummy(self, node):
|
|
|
|
"""Defer to the corresponding parent's handler."""
|
|
|
|
self.visit_literal_block(node)
|
|
|
|
|
|
|
|
|
|
|
|
def depart_console_dummy(self, node):
|
|
|
|
"""Defer to the corresponding parent's handler."""
|
|
|
|
self.depart_literal_block(node)
|
|
|
|
|
|
|
|
|
|
|
|
def visit_console_html(self, node):
|
|
|
|
"""Generate HTML for the console directive."""
|
|
|
|
if self.builder.name in ('djangohtml', 'json') and node['win_console_text']:
|
|
|
|
# Put a mark on the document object signaling the fact the directive
|
|
|
|
# has been used on it.
|
|
|
|
self.document._console_directive_used_flag = True
|
|
|
|
uid = node['uid']
|
|
|
|
self.body.append('''\
|
|
|
|
<div class="console-block" id="console-block-%(id)s">
|
|
|
|
<input class="c-tab-unix" id="c-tab-%(id)s-unix" type="radio" name="console-%(id)s" checked>
|
|
|
|
<label for="c-tab-%(id)s-unix" title="Linux/macOS">/</label>
|
|
|
|
<input class="c-tab-win" id="c-tab-%(id)s-win" type="radio" name="console-%(id)s">
|
|
|
|
<label for="c-tab-%(id)s-win" title="Windows"></label>
|
|
|
|
<section class="c-content-unix" id="c-content-%(id)s-unix">\n''' % {'id': uid})
|
|
|
|
try:
|
|
|
|
self.visit_literal_block(node)
|
|
|
|
except nodes.SkipNode:
|
|
|
|
pass
|
|
|
|
self.body.append('</section>\n')
|
|
|
|
|
|
|
|
self.body.append('<section class="c-content-win" id="c-content-%(id)s-win">\n' % {'id': uid})
|
|
|
|
win_text = node['win_console_text']
|
|
|
|
highlight_args = {'force': True}
|
|
|
|
if 'linenos' in node:
|
|
|
|
linenos = node['linenos']
|
|
|
|
else:
|
|
|
|
linenos = win_text.count('\n') >= self.highlightlinenothreshold - 1
|
|
|
|
|
|
|
|
def warner(msg):
|
|
|
|
self.builder.warn(msg, (self.builder.current_docname, node.line))
|
|
|
|
|
|
|
|
highlighted = self.highlighter.highlight_block(
|
|
|
|
win_text, 'doscon', warn=warner, linenos=linenos, **highlight_args
|
|
|
|
)
|
|
|
|
self.body.append(highlighted)
|
|
|
|
self.body.append('</section>\n')
|
|
|
|
self.body.append('</div>\n')
|
|
|
|
raise nodes.SkipNode
|
|
|
|
else:
|
|
|
|
self.visit_literal_block(node)
|
|
|
|
|
|
|
|
|
|
|
|
class ConsoleDirective(CodeBlock):
|
|
|
|
"""
|
|
|
|
A reStructuredText directive which renders a two-tab code block in which
|
|
|
|
the second tab shows a Windows command line equivalent of the usual
|
|
|
|
Unix-oriented examples.
|
|
|
|
"""
|
|
|
|
required_arguments = 0
|
|
|
|
# The 'doscon' Pygments formatter needs a prompt like this. '>' alone
|
|
|
|
# won't do it because then it simply paints the whole command line as a
|
|
|
|
# grey comment with no highlighting at all.
|
|
|
|
WIN_PROMPT = r'...\> '
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
|
|
|
def args_to_win(cmdline):
|
|
|
|
changed = False
|
|
|
|
out = []
|
|
|
|
for token in cmdline.split():
|
|
|
|
if token[:2] == './':
|
|
|
|
token = token[2:]
|
|
|
|
changed = True
|
|
|
|
elif token[:2] == '~/':
|
|
|
|
token = '%HOMEPATH%\\' + token[2:]
|
|
|
|
changed = True
|
2018-03-07 21:19:22 +00:00
|
|
|
elif token == 'make':
|
|
|
|
token = 'make.bat'
|
|
|
|
changed = True
|
2018-01-20 17:38:48 +00:00
|
|
|
if '://' not in token and 'git' not in cmdline:
|
|
|
|
out.append(token.replace('/', '\\'))
|
|
|
|
changed = True
|
|
|
|
else:
|
|
|
|
out.append(token)
|
|
|
|
if changed:
|
|
|
|
return ' '.join(out)
|
|
|
|
return cmdline
|
|
|
|
|
|
|
|
def cmdline_to_win(line):
|
|
|
|
if line.startswith('# '):
|
|
|
|
return 'REM ' + args_to_win(line[2:])
|
|
|
|
if line.startswith('$ # '):
|
|
|
|
return 'REM ' + args_to_win(line[4:])
|
|
|
|
if line.startswith('$ ./manage.py'):
|
|
|
|
return 'manage.py ' + args_to_win(line[13:])
|
|
|
|
if line.startswith('$ manage.py'):
|
|
|
|
return 'manage.py ' + args_to_win(line[11:])
|
|
|
|
if line.startswith('$ ./runtests.py'):
|
|
|
|
return 'runtests.py ' + args_to_win(line[15:])
|
|
|
|
if line.startswith('$ ./'):
|
|
|
|
return args_to_win(line[4:])
|
|
|
|
if line.startswith('$ python'):
|
|
|
|
return 'py ' + args_to_win(line[8:])
|
|
|
|
if line.startswith('$ '):
|
|
|
|
return args_to_win(line[2:])
|
|
|
|
return None
|
|
|
|
|
|
|
|
def code_block_to_win(content):
|
|
|
|
bchanged = False
|
|
|
|
lines = []
|
|
|
|
for line in content:
|
|
|
|
modline = cmdline_to_win(line)
|
|
|
|
if modline is None:
|
|
|
|
lines.append(line)
|
|
|
|
else:
|
|
|
|
lines.append(self.WIN_PROMPT + modline)
|
|
|
|
bchanged = True
|
|
|
|
if bchanged:
|
|
|
|
return ViewList(lines)
|
|
|
|
return None
|
|
|
|
|
|
|
|
env = self.state.document.settings.env
|
|
|
|
self.arguments = ['console']
|
|
|
|
lit_blk_obj = super().run()[0]
|
|
|
|
|
|
|
|
# Only do work when the djangohtml HTML Sphinx builder is being used,
|
|
|
|
# invoke the default behavior for the rest.
|
|
|
|
if env.app.builder.name not in ('djangohtml', 'json'):
|
|
|
|
return [lit_blk_obj]
|
|
|
|
|
|
|
|
lit_blk_obj['uid'] = '%s' % env.new_serialno('console')
|
|
|
|
# Only add the tabbed UI if there is actually a Windows-specific
|
|
|
|
# version of the CLI example.
|
|
|
|
win_content = code_block_to_win(self.content)
|
|
|
|
if win_content is None:
|
|
|
|
lit_blk_obj['win_console_text'] = None
|
|
|
|
else:
|
|
|
|
self.content = win_content
|
|
|
|
lit_blk_obj['win_console_text'] = super().run()[0].rawsource
|
|
|
|
|
|
|
|
# Replace the literal_node object returned by Sphinx's CodeBlock with
|
|
|
|
# the ConsoleNode wrapper.
|
|
|
|
return [ConsoleNode(lit_blk_obj)]
|
|
|
|
|
|
|
|
|
|
|
|
def html_page_context_hook(app, pagename, templatename, context, doctree):
|
|
|
|
# Put a bool on the context used to render the template. It's used to
|
|
|
|
# control inclusion of console-tabs.css and activation of the JavaScript.
|
|
|
|
# This way it's include only from HTML files rendered from reST files where
|
|
|
|
# the ConsoleDirective is used.
|
|
|
|
context['include_console_assets'] = getattr(doctree, '_console_directive_used_flag', False)
|