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


Python fmt_template.Formatter类代码示例

本文整理汇总了Python中fmt_template.Formatter的典型用法代码示例。如果您正苦于以下问题:Python Formatter类的具体用法?Python Formatter怎么用?Python Formatter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: begin_project

 def begin_project (self, project):
     fix_dates(project)
     load_note_attribs (project)
     if project.date_due != None or project.date_to_start != None:
         fix_dates(project)
         load_note_attribs (project)
         Formatter.begin_project(self, project)
开发者ID:dareiff,项目名称:ofexport,代码行数:7,代码来源:of_to_ics.py

示例2: __init__

    def __init__ (self, out, template, time_control_default):
        Formatter.__init__(self, out, template)
        self.current_item = None
        self.time_control_default = time_control_default

        # Start and due dates are formated differently for all day tasks, need different types
        template.attrib_map_builder.type_fns['ics.date_due'] = lambda x: format_date(self.current_item, x, True)
        template.attrib_map_builder.type_fns['ics.date_to_start'] = lambda x: format_date(self.current_item, x, False)
        template.attrib_map_builder.type_fns['ics.note'] = lambda x: '\\r'.join(x.get_note_lines ())
开发者ID:alainyog,项目名称:ofexport,代码行数:9,代码来源:plugin_ics.py

示例3: begin_context

 def begin_context (self, context):
     if self.last_line_was_text:
         print >> self.out
     print >>self.out, ('#' * (self.header_depth+1)),
     Formatter.begin_context(self, context)
     print >>self.out
     self.depth = 0
     self.header_depth+=1
     self.last_line_was_text = False
开发者ID:markokaestner,项目名称:ofexport,代码行数:9,代码来源:of_to_md.py

示例4: begin_folder

 def begin_folder (self, folder):
     is_output = 'FolderStart' in self.template.nodes
     if self.last_line_was_text and is_output:
         print >> self.out
         self.last_line_was_text = False
     Formatter.begin_folder(self, folder)
     if is_output:
         print >>self.out
     self.depth = 0
     self.header_depth+=1
开发者ID:damicoac,项目名称:ofexport,代码行数:10,代码来源:plugin_markdown.py

示例5: begin_context

 def begin_context (self, context):
     is_output = 'ContextStart' in self.template.nodes
     if self.last_line_was_text and is_output:
         print >> self.out
         self.last_line_was_text = False
     Formatter.begin_context(self, context)
     if is_output:
         print >>self.out
     self.depth = 0
     self.header_depth+=1
开发者ID:damicoac,项目名称:ofexport,代码行数:10,代码来源:plugin_markdown.py

示例6: __init__

 def __init__ (self, out, template):
     attrib_conversions = {
                   'name'           : lambda x: remove_trailing_colon(x),
                   'link'           : lambda x: x,
                   'status'         : lambda x: x,
                   'flagged'        : lambda x: str(x) if x else None,
                   'context'        : lambda x: strip_brackets(''.join (x.name.split ())),
                   'project'        : lambda x: strip_brackets(''.join (x.name.split ())),
                   'date_to_start'  : lambda x: x.strftime(template.date_format),
                   'date_due'       : lambda x: x.strftime(template.date_format),
                   'date_completed' : lambda x: x.strftime(template.date_format),
                   'note'           : lambda x: ''.join([line+'\n' for line in x.get_note_lines ()])
                   }
     Formatter.__init__(self, out, template, attrib_conversions=attrib_conversions)
开发者ID:dareiff,项目名称:ofexport,代码行数:14,代码来源:of_to_tp.py

示例7: __init__

 def __init__ (self, out, template):
     attrib_conversions = {
                   'id'             : lambda x: escape(x),
                   'name'           : lambda x: escape(x),
                   'link'           : lambda x: x,
                   'status'         : lambda x: x,
                   'flagged'        : lambda x: str(x) if x else None,
                   'context'        : lambda x: escape(''.join (x.name.split ())),
                   'project'        : lambda x: escape(''.join (x.name.split ())),
                   'date_to_start'  : lambda x: x.strftime(template.date_format),
                   'date_due'       : lambda x: x.strftime(template.date_format),
                   'date_completed' : lambda x: x.strftime(template.date_format),
                   'note'           : lambda x: format_note (x.get_note_lines ())
                   }
     Formatter.__init__(self, out, template, attrib_conversions = attrib_conversions)
开发者ID:dareiff,项目名称:ofexport,代码行数:15,代码来源:of_to_opml.py

示例8: __init__

 def __init__ (self, out, template):
     self.current_item = None
     attrib_conversions = {
                   'id'             : lambda x: x,
                   'name'           : lambda x: x,
                   'link'           : lambda x: x,
                   'status'         : lambda x: x,
                   'flagged'        : lambda x: str(x) if x else None,
                   'context'        : lambda x: x.name,
                   'project'        : lambda x: x.name,
                   'date_to_start'  : lambda x: format_date(self.current_item,x, False),
                   'date_due'       : lambda x: format_date(self.current_item, x, True),
                   'date_completed' : lambda x: x.strftime(DATE_FORMAT_LONG),
                   'note'           : lambda x: '\\r'.join(x.get_note_lines ())
                   }
     Formatter.__init__(self, out, template, attrib_conversions = attrib_conversions)
开发者ID:dareiff,项目名称:ofexport,代码行数:16,代码来源:of_to_ics.py

示例9: end_context

 def end_context (self, context):
     self.header_depth-=1
     Formatter.end_context(self, context)
开发者ID:damicoac,项目名称:ofexport,代码行数:3,代码来源:plugin_markdown.py

示例10: end_task

 def end_task (self,task):
     Formatter.end_task(self, task)
     self.last_line_was_text = True
开发者ID:damicoac,项目名称:ofexport,代码行数:3,代码来源:plugin_markdown.py

示例11: __init__

 def __init__ (self, out, template):
     self.current_item = None
     Formatter.__init__(self, out, template)
     
     template.attrib_map_builder.type_fns['ics.date'] = lambda x: format_date(self.current_item, x, True)
     template.attrib_map_builder.type_fns['ics.note'] = lambda x: '\\r'.join(x.get_note_lines ())
开发者ID:damicoac,项目名称:ofexport,代码行数:6,代码来源:plugin_ics.py

示例12: begin_project

 def begin_project (self, project):
     if project.date_due != None or project.date_to_start != None:
         fix_dates(project)
         load_note_attribs (project, self.time_control_default)
         Formatter.begin_project(self, project)
开发者ID:alainyog,项目名称:ofexport,代码行数:5,代码来源:plugin_ics.py

示例13: __init__

 def __init__ (self, out, template):
     Formatter.__init__(self, out, template)
     self.header_depth = 0
     self.depth = 0
     self.out = out
     self.last_line_was_text = False
开发者ID:damicoac,项目名称:ofexport,代码行数:6,代码来源:plugin_markdown.py

示例14: end_task

 def end_task (self, task):
     if task.date_due != None or task.date_to_start != None:
         Formatter.end_task(self, task)
开发者ID:dareiff,项目名称:ofexport,代码行数:3,代码来源:of_to_ics.py

示例15: begin_task

 def begin_task (self, task):
     if task.date_due != None or task.date_to_start != None:
         fix_dates(task)
         load_note_attribs (task, self.time_control_default)
         Formatter.begin_task(self, task)
开发者ID:alainyog,项目名称:ofexport,代码行数:5,代码来源:plugin_ics.py


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