Beispiel #1
0
    def __init__(self, request, **kw):
        FormatterBase.__init__(self, request, **kw)

        self.document = minidom.Document()
        self.document.documentElement = self.document.createElement('xml')
        self.position = self.document.documentElement
        self.tag_stack = [('xml', {})]
Beispiel #2
0
    def __init__(self, request, **kw):
        FormatterBase.__init__(self, request, **kw)

        self.members = []
        self._bullet_list_level = 0
        self._inside_link = False
        self._new_member = ''
Beispiel #3
0
    def __init__(self, request, **kw):
        FormatterBase.__init__(self, request, **kw)

        self.members = []
        self._bullet_list_level = 0
        self._inside_link = False
        self._new_member = ''
Beispiel #4
0
    def __init__(self, request, **kw):
        FormatterBase.__init__(self, request, **kw)

        self.document = minidom.Document()
        self.document.documentElement = self.document.createElement('xml')
        self.position = self.document.documentElement
        self.tag_stack = [('xml', {})]
Beispiel #5
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self._current_depth = 1
     self._base_depth = 0
     self.in_pre = 0
     self._doc = tree.entity()
     self._curr = self._doc
     # self._writer = structwriter(indent=u"yes", encoding=config.charset)
     return
Beispiel #6
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self._current_depth = 1
     self._base_depth = 0
     self.in_pre = 0
     self._doc = tree.entity()
     self._curr = self._doc
     #self._writer = structwriter(indent=u"yes", encoding=config.charset)
     return
Beispiel #7
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self._in_code_area = 0
     self._in_code_line = 0
     self._code_area_state = [0, -1, -1, 0]
     self._in_list = 0
     self._did_para = 0
     self._url = None
     self._text = None # XXX does not work with links in headings!!!!!
Beispiel #8
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self._in_code_area = 0
     self._in_code_line = 0
     self._code_area_state = [0, -1, -1, 0]
     self._lists = []
     self._url = None
     self._text = None  # XXX does not work with links in headings!!!!!
     self._text_stack = []
     self._skip_text = False
     self._wrap_skip_text = False
     self._textbuf = ''
     self._indent = 0
     self._listitem_on = []
     self._empty_line_count = 2
     self._paragraph_ended = False
     self._paragraph_skip_begin = True
Beispiel #9
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self._in_code_area = 0
     self._in_code_line = 0
     self._code_area_state = [0, -1, -1, 0]
     self._lists = []
     self._url = None
     self._text = None  # XXX does not work with links in headings!!!!!
     self._text_stack = []
     self._skip_text = False
     self._wrap_skip_text = False
     self._textbuf = ''
     self._indent = 0
     self._listitem_on = []
     self._empty_line_count = 2
     self._paragraph_ended = False
     self._paragraph_skip_begin = True
Beispiel #10
0
    def __init__(self, request, doctype="article", **kw):
        FormatterBase.__init__(self, request, **kw)
        self.request = request
        '''
        If the formatter is used by the Include macro, it will set
        is_included=True in which case we know we need to call startDocument
        and endDocument from startContent and endContent respectively, since
        the Include macro will not be calling them, and the formatter doesn't
        work properly unless they are called.
        '''
        if kw.has_key("is_included") and kw["is_included"]:
            self.include_kludge = True
        else:
            self.include_kludge = False

        self.doctype = doctype
        self.curdepth = 0
        self.cur = None
    def __init__(self, request, doctype="article", **kw):
        FormatterBase.__init__(self, request, **kw)
        self.request = request

        '''
        If the formatter is used by the Include macro, it will set
        is_included=True in which case we know we need to call startDocument
        and endDocument from startContent and endContent respectively, since
        the Include macro will not be calling them, and the formatter doesn't
        work properly unless they are called.
        '''
        if kw.has_key("is_included") and kw["is_included"]:
            self.include_kludge = True
        else:
            self.include_kludge = False

        self.doctype = doctype
        self.curdepth = 0
        self.cur = None
Beispiel #12
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self._current_depth = 1
     self._base_depth = 0
     self.in_pre = 0
Beispiel #13
0
 def __init__(self, request, **kw):
     self.textstorage = list()
     FormatterBase.__init__(self, request, **kw)
Beispiel #14
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self.in_heading = False
     self.collected_headings = request._tocfm_collected_headings
Beispiel #15
0
 def __init__(self, request, **kw):
     FormatterBase.__init__(self, request, **kw)
     self.in_heading = False
     self.collected_headings = request._tocfm_collected_headings
Beispiel #16
0
    def __init__(self, request, **kw):
        FormatterBase.__init__(self, request, **kw)

        self.members = []
        self._bullet_list_level = 0
        self._catch_name = False
Beispiel #17
0
 def __init__(self, request, **kw):
     # Initialize globally accessible flags
     FormatterBase.__init__(self, request, **kw)
     """
     Current indentation in characters.
     @type: int
     """
     self._indentation = 0
     """
     Was last line completed by a linefeed?
     @type: bool
     """
     self._lastLineComplete = True
     """
     Maps substitution names to images.
     @type: { str: str, ... }
     """
     self._substitution2Image = { }
     """
     Current list of strings collecting text which is meant to be output.
     @type: [ str, ... ]
     """
     self._collectors = [ ]
     """
     Current list of open lists.
     @type: [ Formatter.List, ... ]
     """
     self._openLists = [ ]
     """
     Text output since last linefeed.
     @type: str
     """
     self._sinceEOL = u""
     """
     Text output since last block start.
     @type: str
     """
     self._sinceBLK = u""
     """
     Current inline style.
     @type: Style
     """
     self._currentStyle = None
     """
     A space pends to be output.
     @type: bool
     """
     self._spacePending = u""
     """
     Maps descriptions to URLs
     @type: [ ( str, str, ), ... ]
     """
     self._description_urls = [ ]
     """
     Number of last footnote.
     @type: int
     """
     self._lastFootNote = 0
     """
     Maps numbers to footnote texts not output so far.
     @type: { int: str, ... ]
     """
     self._number2Footnote = { }
     """
     Name of the rendered page.
     @type: str
     """
     self._pageName = None
     """
     Depth of the table of contents or ``None``. ``0`` means unlimited.
     @type: int
     """
     self._contentsDepth = None
Beispiel #18
0
 def __init__(self, request, **kw):
     # Initialize globally accessible flags
     FormatterBase.__init__(self, request, **kw)
     """
     Current indentation in characters.
     @type: int
     """
     self._indentation = 0
     """
     Was last line completed by a linefeed?
     @type: bool
     """
     self._lastLineComplete = True
     """
     Maps substitution names to images.
     @type: { str: str, ... }
     """
     self._substitution2Image = { }
     """
     Current list of strings collecting text which is meant to be output.
     @type: [ str, ... ]
     """
     self._collectors = [ ]
     """
     Current list of open lists.
     @type: [ Formatter.List, ... ]
     """
     self._openLists = [ ]
     """
     Text output since last linefeed.
     @type: str
     """
     self._sinceEOL = u""
     """
     Text output since last block start.
     @type: str
     """
     self._sinceBLK = u""
     """
     Current inline style.
     @type: Style
     """
     self._currentStyle = None
     """
     A space pends to be output.
     @type: bool
     """
     self._spacePending = u""
     """
     Maps descriptions to URLs
     @type: [ ( str, str, ), ... ]
     """
     self._description_urls = [ ]
     """
     Number of last footnote.
     @type: int
     """
     self._lastFootNote = 0
     """
     Maps numbers to footnote texts not output so far.
     @type: { int: str, ... ]
     """
     self._number2Footnote = { }
     """
     Name of the rendered page.
     @type: str
     """
     self._pageName = None
     """
     Depth of the table of contents or ``None``. ``0`` means unlimited.
     @type: int
     """
     self._contentsDepth = None
     self._table = None
 def __init__(self, request, **kw):
     self.textstorage = list()
     FormatterBase.__init__(self, request, **kw)