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


Python NodeStore.error方法代码示例

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


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

示例1: set_numbering

# 需要导入模块: from sdoc.sdoc2.NodeStore import NodeStore [as 别名]
# 或者: from sdoc.sdoc2.NodeStore.NodeStore import error [as 别名]
 def set_numbering(self):
     """
     Sets the numbering status to the heading node.
     """
     if 'numbering' in self._options:
         if self._options['numbering'] == 'off':
             self.numbering = False
         elif self._options['numbering'] == 'on':
             self.numbering = True
         else:
             NodeStore.error("Invalid value '{}' for attribute 'numbering'. Allowed values are 'on' and 'off'.".
                             format(self._options['numbering']), self)
开发者ID:OlegKlimenko,项目名称:py-sdoc,代码行数:14,代码来源:HeadingNode.py

示例2: __check_document_info

# 需要导入模块: from sdoc.sdoc2.NodeStore import NodeStore [as 别名]
# 或者: from sdoc.sdoc2.NodeStore.NodeStore import error [as 别名]
    def __check_document_info(info_node_current, info_node_new):
        """
        Checks if a document info node has been set already. If so, an error will be logged.

        :param int|None info_node_current: The current document info node (i.e. a property of the document).
        :param sdoc.sdoc2.node.Node.Node info_node_new: The (new) document info node.
        """
        if info_node_current:
            node = in_scope(info_node_current)
            position = node.position
            out_scope(node)

            NodeStore.error("Document info {0} can be specified only once. Previous definition at {1}.".format(
                info_node_new.name, str(position)), info_node_new)
开发者ID:SDoc,项目名称:py-sdoc,代码行数:16,代码来源:DocumentNode.py

示例3: generate

# 需要导入模块: from sdoc.sdoc2.NodeStore import NodeStore [as 别名]
# 或者: from sdoc.sdoc2.NodeStore.NodeStore import error [as 别名]
    def generate(self, node, file):
        """
        Generates the HTML code for an icon node.

        :param sdoc.sdoc2.node.IconNode.IconNode node: The icon node.
        :param file file: The output file.
        """
        attributes = IconNode.get_definition(node.argument)

        if attributes:
            img_element = Html.generate_void_element('img', attributes)
            file.write(img_element)
        else:
            NodeStore.error("There is no definition for icon with name '{}'".format(node.argument), node)
开发者ID:OlegKlimenko,项目名称:py-sdoc,代码行数:16,代码来源:IconHtmlFormatter.py


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