示例#1
0
    def test_multiline_comment(self):
        """Multi-line spans should close at the end of one line and reopen at
        the beginning of the next."""
        c = Region('c')
        c2 = Region('c')
        l = LINE
        tags = [(0, True, c), (79, False, c), (80, False, l), (80, True, c2),
                (151, False, l), (222, False, l), (284, False, c2),
                (285, False, l), (286, False, l)]
        text = u"""/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"""
        lines = text.splitlines(True)
        offsets = cumulative_sum(map(len, lines))
        actual_lines = [
            html_line(text_line.rstrip('\r\n'), e,
                      offset) for text_line, e, offset in zip(
                          lines, tags_per_line(balanced_tags(tags)), offsets)
        ]
        expected_lines = [
            '<span class="c">/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */</span>',
            '<span class="c">/* This Source Code Form is subject to the terms of the Mozilla Public</span>',
            '<span class="c"> * License, v. 2.0. If a copy of the MPL was not distributed with this</span>',
            '<span class="c"> * file, You can obtain one at http://mozilla.org/MPL/2.0/. */</span>',
            ''
        ]
        eq_(actual_lines, expected_lines)
示例#2
0
def text_to_html_lines(text, refs=(), regions=()):
    """Run the full pipeline, and return a list of htmlified lines of ``text``
    with markup interspersed for ``regions``."""
    lines = text.splitlines(True)
    offsets = cumulative_sum(map(len, lines))
    return [html_line(text_line, e, o) for (text_line, e, o) in
            zip(lines, tags_per_line(finished_tags(lines,
                                                   refs,
                                                   regions)), offsets)]
示例#3
0
def text_to_html_lines(text, refs=(), regions=()):
    """Run the full pipeline, and return a list of htmlified lines of ``text``
    with markup interspersed for ``regions``."""
    lines = text.splitlines(True)
    offsets = cumulative_sum(map(len, lines))
    return [
        html_line(text_line, e, o) for (text_line, e, o) in zip(
            lines, tags_per_line(finished_tags(lines, refs, regions)), offsets)
    ]
示例#4
0
    def test_multiline_comment(self):
        """Multi-line spans should close at the end of one line and reopen at
        the beginning of the next."""
        c = Region('c')
        c2 = Region('c')
        l = LINE
        tags = [(0, True, c),
                (79, False, c),
                (80, False, l),

                (80, True, c2),
                (151, False, l),

                (222, False, l),

                (284, False, c2),
                (285, False, l),

                (286, False, l)]
        text = u"""/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"""
        lines = text.splitlines(True)
        offsets = cumulative_sum(map(len, lines))
        actual_lines = [html_line(text_line.rstrip('\r\n'), e, offset) for
                        text_line, e, offset in
                        zip(lines, tags_per_line(balanced_tags(tags)), offsets)]
        expected_lines = ['<span class="c">/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */</span>',
                          '<span class="c">/* This Source Code Form is subject to the terms of the Mozilla Public</span>',
                          '<span class="c"> * License, v. 2.0. If a copy of the MPL was not distributed with this</span>',
                          '<span class="c"> * file, You can obtain one at http://mozilla.org/MPL/2.0/. */</span>',
                          '']
        eq_(actual_lines, expected_lines)
示例#5
0
文件: app.py 项目: modulexcite/dxr
def _browse_file(tree,
                 path,
                 line_docs,
                 file_doc,
                 config,
                 date=None,
                 contents=None):
    """Return a rendered page displaying a source file.

    :arg string tree: name of tree on which file is found
    :arg string path: relative path from tree root of file
    :arg list line_docs: LINE documents as defined in the mapping of core.py,
        where the `content` field is dereferenced
    :arg file_doc: the FILE document as defined in core.py
    :arg config: TreeConfig object of this tree
    :arg date: a formatted string representing the generated date, default to now
    :arg string contents: the contents of the source file, defaults to joining
        the `content` field of all line_docs
    """
    def sidebar_links(sections):
        """Return data structure to build nav sidebar from. ::

            [('Section Name', [{'icon': ..., 'title': ..., 'href': ...}])]

        """
        # Sort by order, resolving ties by section name:
        return sorted(sections,
                      key=lambda section:
                      (section['order'], section['heading']))

    if not date:
        # Then assume that the file is generated now. Remark: we can't use this
        # as the default param because that is only evaluated once, so the same
        # time would always be used.
        date = datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S +0000")

    common = _build_common_file_template(tree, path, date, config)
    links = file_doc.get('links', [])
    if is_binary_image(path):
        return render_template('image_file.html', **common)
    else:  # We don't allow browsing binary files, so this must be a text file.
        # We concretize the lines into a list because we iterate over it multiple times
        lines = [doc['content'] for doc in line_docs]
        if not contents:
            # If contents are not provided, we can reconstruct them by
            # stitching the lines together.
            contents = ''.join(lines)
        offsets = cumulative_sum(imap(len, lines))
        tree_config = config.trees[tree]
        # Construct skimmer objects for all enabled plugins that define a
        # file_to_skim class.
        skimmers = [
            plugin.file_to_skim(path, contents, plugin.name, tree_config,
                                file_doc, line_docs)
            for plugin in tree_config.enabled_plugins if plugin.file_to_skim
        ]
        skim_links, refses, regionses, annotationses = skim_file(
            skimmers, len(line_docs))
        index_refs = (Ref.es_to_triple(ref, tree_config)
                      for ref in chain.from_iterable(
                          doc.get('refs', []) for doc in line_docs))
        index_regions = (Region.es_to_triple(region)
                         for region in chain.from_iterable(
                             doc.get('regions', []) for doc in line_docs))
        tags = finished_tags(
            lines, chain(chain.from_iterable(refses), index_refs),
            chain(chain.from_iterable(regionses), index_regions))
        return render_template(
            'text_file.html',
            **merge(
                common,
                {
                    # Someday, it would be great to stream this and not concretize
                    # the whole thing in RAM. The template will have to quit
                    # looping through the whole thing 3 times.
                    'lines': [(html_line(doc['content'], tags_in_line, offset),
                               doc.get('annotations', []) + skim_annotations)
                              for doc, tags_in_line, offset, skim_annotations
                              in izip(line_docs, tags_per_line(tags), offsets,
                                      annotationses)],
                    'is_text':
                    True,
                    'sections':
                    sidebar_links(links + skim_links)
                }))
示例#6
0
文件: app.py 项目: snyderp/dxr
def _browse_file(tree, path, line_docs, file_doc, config, is_binary,
                 date=None, contents=None, image_rev=None):
    """Return a rendered page displaying a source file.

    :arg string tree: name of tree on which file is found
    :arg string path: relative path from tree root of file
    :arg list line_docs: LINE documents as defined in the mapping of core.py,
        where the `content` field is dereferenced
    :arg file_doc: the FILE document as defined in core.py
    :arg config: TreeConfig object of this tree
    :arg is_binary: Whether file is binary or not
    :arg date: a formatted string representing the generated date, default to now
    :arg string contents: the contents of the source file, defaults to joining
        the `content` field of all line_docs
    :arg image_rev: revision number of a textual or binary image, for images
        displayed at a certain rev
    """
    def sidebar_links(sections):
        """Return data structure to build nav sidebar from. ::

            [('Section Name', [{'icon': ..., 'title': ..., 'href': ...}])]

        """
        # Sort by order, resolving ties by section name:
        return sorted(sections, key=lambda section: (section['order'],
                                                     section['heading']))

    if not date:
        # Then assume that the file is generated now. Remark: we can't use this
        # as the default param because that is only evaluated once, so the same
        # time would always be used.
        date = datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S +0000")

    common = _build_common_file_template(tree, path, is_binary, date, config)
    links = file_doc.get('links', [])
    if is_binary_image(path):
        return render_template(
            'image_file.html',
            **merge(common, {
                'sections': sidebar_links(links),
                'revision': image_rev}))
    elif is_binary:
        return render_template(
            'text_file.html',
            **merge(common, {
                'lines': [],
                'is_binary': True,
                'sections': sidebar_links(links)}))
    else:
        # We concretize the lines into a list because we iterate over it multiple times
        lines = [doc['content'] for doc in line_docs]
        if not contents:
            # If contents are not provided, we can reconstruct them by
            # stitching the lines together.
            contents = ''.join(lines)
        offsets = cumulative_sum(imap(len, lines))
        tree_config = config.trees[tree]
        if is_textual_image(path) and image_rev:
            # Add a link to view textual images on revs:
            links.extend(dictify_links([
                (4,
                 'Image',
                 [('svgview', 'View', url_for('.raw_rev',
                                              tree=tree_config.name,
                                              path=path,
                                              revision=image_rev))])]))
        # Construct skimmer objects for all enabled plugins that define a
        # file_to_skim class.
        skimmers = [plugin.file_to_skim(path,
                                        contents,
                                        plugin.name,
                                        tree_config,
                                        file_doc,
                                        line_docs)
                    for plugin in tree_config.enabled_plugins
                    if plugin.file_to_skim]
        skim_links, refses, regionses, annotationses = skim_file(skimmers, len(line_docs))
        index_refs = (Ref.es_to_triple(ref, tree_config) for ref in
                      chain.from_iterable(doc.get('refs', [])
                                          for doc in line_docs))
        index_regions = (Region.es_to_triple(region) for region in
                         chain.from_iterable(doc.get('regions', [])
                                             for doc in line_docs))
        tags = finished_tags(lines,
                             chain(chain.from_iterable(refses), index_refs),
                             chain(chain.from_iterable(regionses), index_regions))
        return render_template(
            'text_file.html',
            **merge(common, {
                # Someday, it would be great to stream this and not concretize
                # the whole thing in RAM. The template will have to quit
                # looping through the whole thing 3 times.
                'lines': [(html_line(doc['content'], tags_in_line, offset),
                           doc.get('annotations', []) + skim_annotations)
                          for doc, tags_in_line, offset, skim_annotations
                              in izip(line_docs, tags_per_line(tags), offsets, annotationses)],
                'sections': sidebar_links(links + skim_links)}))