python – 将外部文档包含到Sphinx项目中

前端之家收集整理的这篇文章主要介绍了python – 将外部文档包含到Sphinx项目中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们在SVN中使用Sphinx维护了相当大的文档.

作为生成输出的一部分,我们希望将相关Python模块的发行说明作为主要内容(而不是超链接!).外部模块的发行说明也在SVN中保留.是否有一些Sphinx-ish方法从其他(SVN)源中提取文档的各个部分?好吧,使用SVN外部是一种解决问题的方法,但也许不是最聪明的方式……任何更好的选择?

解决方法

我能想到的两个选择是:

>将svn:externals链接添加到远程项目(您已经了解).
>使用自定义指令扩展Sphinx以包含来自远程subversion存储库的文件.

我不是Sphinx内部的专家,但能够拼凑一个快速扩展,嵌入来自远程subversion存储库的文件.

该扩展添加了一个svninclude指令,该指令接受1个参数,即您的文档所在的存储库的URL.它将此存储库检入位于项目根目录中的临时目录_svncache,然后继续读取每个文件内容并将其插入解析器的状态机.

这是svninclude.py扩展的代码.它过于简单,目前没有错误检查.如果你计划实施这个,请告诉我,如果你遇到困难,我可以提供一些额外的提示

import os,re,subprocess,sys
from docutils import nodes,statemachine
from docutils.parsers.rst import directives
from sphinx.util.compat import Directive,directive_dwim

class SvnInclude(Directive):

    has_content = True
    required_arguments = 1
    optional_arguments = 0
    final_argument_whitespace = False

    def _setup_repo(self,repo):
        env = self.state.document.settings.env
        path = os.path.normpath(env.doc2path(env.docname,base=None))
        cache = os.path.join(os.path.dirname(path),'_svncache')
        root = os.path.join(cache,re.sub('[\W\-]+','_',repo))
        if not os.path.exists(root):
            os.makedirs(root)
        subprocess.call(['svn','co',repo,root])
        return root

    def run(self):
        root = self._setup_repo(self.arguments[0])
        for path in self.content:
            data = open(os.path.join(root,path),'rb').read()
            lines = statemachine.string2lines(data)
            self.state_machine.insert_input(lines,path)
        return []

def setup(app):
    app.add_directive('svninclude',directive_dwim(SvnInclude))

以下是您在index.rst(或其他文件)中包含的标记示例:

.. svninclude:: http://svn.domain.com/svn/project

    one.rst
    doc/two.rst

其中路径one.rst和doc / two.rst相对于subversion url,例如http://svn.domain.com/svn/project/one.rst.

您当然希望打包svninclude.py并将其安装在Python路径中.这是我测试它的方法

>将“svninclude”添加到source / conf.py中的扩展名列表中.
>在项目根目录中放置svninclude.py.

然后跑了:

% PYTHONPATH=. sphinx-build -b html ./source ./build
原文链接:https://www.f2er.com/python/241891.html

猜你在找的Python相关文章