当前位置: 首页>>代码示例>>Python>>正文


Python StandaloneHTMLBuilder.init方法代码示例

本文整理汇总了Python中sphinx.builders.html.StandaloneHTMLBuilder.init方法的典型用法代码示例。如果您正苦于以下问题:Python StandaloneHTMLBuilder.init方法的具体用法?Python StandaloneHTMLBuilder.init怎么用?Python StandaloneHTMLBuilder.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sphinx.builders.html.StandaloneHTMLBuilder的用法示例。


在下文中一共展示了StandaloneHTMLBuilder.init方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     # the output files for epub must be .html only
     self.out_suffix = '.xhtml'
     self.link_suffix = '.xhtml'
     self.playorder = 0
     self.tocid = 0
开发者ID:joostvanzwieten,项目名称:sphinx,代码行数:9,代码来源:epub.py

示例2: test_images

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
def test_images(app):
    app.build()
    assert ('image file not readable: foo.png'
            in app._warning.getvalue())

    tree = app.env.get_doctree('images')
    htmlbuilder = StandaloneHTMLBuilder(app)
    htmlbuilder.set_environment(app.env)
    htmlbuilder.init()
    htmlbuilder.imgpath = 'dummy'
    htmlbuilder.post_process_images(tree)
    assert set(htmlbuilder.images.keys()) == \
        set(['subdir/img.png', 'img.png', 'subdir/simg.png', 'svgimg.svg',
             'img.foo.png'])
    assert set(htmlbuilder.images.values()) == \
        set(['img.png', 'img1.png', 'simg.png', 'svgimg.svg', 'img.foo.png'])

    latexbuilder = LaTeXBuilder(app)
    latexbuilder.set_environment(app.env)
    latexbuilder.init()
    latexbuilder.post_process_images(tree)
    assert set(latexbuilder.images.keys()) == \
        set(['subdir/img.png', 'subdir/simg.png', 'img.png', 'img.pdf',
             'svgimg.pdf', 'img.foo.png'])
    assert set(latexbuilder.images.values()) == \
        set(['img.pdf', 'img.png', 'img1.png', 'simg.png',
             'svgimg.pdf', 'img.foo.png'])
开发者ID:olivier-heurtier,项目名称:sphinx,代码行数:29,代码来源:test_environment.py

示例3: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
    def init(self):
        StandaloneHTMLBuilder.init(self)

        # Pull project data from conf.py if it exists
        context = self.config.html_context
        if 'current_version' in context:
            self.version = context['current_version']
        if 'slug' in context:
            self.project = context['slug']

        # Put in our media files instead of putting them in the docs.
        for index, file in enumerate(self.script_files):
            if file in MEDIA_MAPPING.keys():
                self.script_files[index] = MEDIA_MAPPING[file] % context['MEDIA_URL']
                if file == "_static/jquery.js":
                    self.script_files.insert(index+1, "%sjavascript/jquery/jquery-migrate-1.2.1.min.js" % context['MEDIA_URL'])

        if 'html_theme' in context and context['html_theme'] == 'sphinx_rtd_theme':
            self.css_files.append('%scss/sphinx_rtd_theme.css' % context['MEDIA_URL'])
        else:
            self.css_files.append('%scss/badge_only.css' % context['MEDIA_URL'])

        # Analytics codes
        #self.script_files.append('_static/readthedocs-ext.js')
        #self.script_files.append('%sjavascript/analytics.js' % context['MEDIA_URL'])

        # We include the media servers version here so we can update rtd.js across all
        # documentation without rebuilding every one. 
        # If this script is embedded in each build, 
        # then updating the file across all docs is basically impossible.
        self.script_files.append('%sjavascript/readthedocs-doc-embed.js' % context['MEDIA_URL'])
        self.css_files.append('%scss/readthedocs-doc-embed.css' % context['MEDIA_URL'])
开发者ID:rvercesi,项目名称:readthedocs-sphinx-ext,代码行数:34,代码来源:readthedocs.py

示例4: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     # the output files for HTML help must be .html only
     self.out_suffix = '.html'
     # determine the correct locale setting
     locale = chm_locales.get(self.config.language)
     if locale is not None:
         self.lcid, self.encoding = locale
开发者ID:cyberdaemon,项目名称:sphinx-docs,代码行数:10,代码来源:htmlhelp.py

示例5: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     # the output files for epub must be .html only
     self.out_suffix = '.xhtml'
     self.link_suffix = '.xhtml'
     self.playorder = 0
     self.tocid = 0
     self.use_index = self.get_builder_config('use_index', 'epub')
开发者ID:TimKam,项目名称:sphinx,代码行数:10,代码来源:epub.py

示例6: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     # type: () -> None
     StandaloneHTMLBuilder.init(self)
     # the output files for epub must be .html only
     self.out_suffix = '.xhtml'
     self.link_suffix = '.xhtml'
     self.playorder = 0
     self.tocid = 0
     self.id_cache = {}  # type: Dict[unicode, unicode]
     self.use_index = self.get_builder_config('use_index', 'epub')
开发者ID:LFYG,项目名称:sphinx,代码行数:12,代码来源:_epub_base.py

示例7: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     # type: () -> None
     # the output files for HTML help is .html by default
     self.out_suffix = '.html'
     self.link_suffix = '.html'
     StandaloneHTMLBuilder.init(self)
     # determine the correct locale setting
     locale = chm_locales.get(self.config.language)
     if locale is not None:
         self.lcid, self.encoding = locale
开发者ID:willingc,项目名称:sphinx,代码行数:12,代码来源:htmlhelp.py

示例8: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
    def init(self):
        StandaloneHTMLBuilder.init(self)

        # Pull project data from conf.py if it exists
        context = self.config.html_context
        if context.has_key('current_version'):
            self.version = context['current_version']
        if context.has_key('slug'):
            self.project = context['slug']

        self.storage = WebStorage(builder=self)

        # add our custom bits
        self.script_files.append('_static/jquery.pageslide.js')
        self.script_files.append('_static/websupport2-bundle.js')
        self.css_files.append('_static/websupport2.css')
        self.css_files.append('_static/sphinxweb.css')
        self.css_files.append('_static/jquery.pageslide.css')
开发者ID:ericholscher,项目名称:sphinx-websupport2,代码行数:20,代码来源:websupport2.py

示例9: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     # the output files for HTML help must be .html only
     self.out_suffix = '.html'
开发者ID:qsnake,项目名称:sphinx,代码行数:6,代码来源:qthelp.py

示例10: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     # type: () -> None
     StandaloneHTMLBuilder.init(self)
     # the output files for HTML help must be .html only
     self.out_suffix = '.html'
     self.link_suffix = '.html'
开发者ID:LFYG,项目名称:sphinx,代码行数:8,代码来源:qthelp.py

示例11: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     finalize_media(self)
开发者ID:B-Rich,项目名称:readthedocs-sphinx-ext,代码行数:5,代码来源:readthedocs.py

示例12: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     # the output files for mobi must be .html only
     self.out_suffix = '.html'
     self.playorder = 0
开发者ID:Voronenko,项目名称:projectdocs,代码行数:7,代码来源:mobi.py

示例13: init

# 需要导入模块: from sphinx.builders.html import StandaloneHTMLBuilder [as 别名]
# 或者: from sphinx.builders.html.StandaloneHTMLBuilder import init [as 别名]
 def init(self):
     StandaloneHTMLBuilder.init(self)
     self.toctree = Toctree(self._render_title, self.get_relative_uri)
开发者ID:mongodb,项目名称:docs-tools,代码行数:5,代码来源:stitch-builders.py


注:本文中的sphinx.builders.html.StandaloneHTMLBuilder.init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。