edgewall/trac

View on GitHub
trac/util/html.py

Summary

Maintainability
F
4 days
Test Coverage

File html.py has 797 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
#
# Copyright (C) 2003-2023 Edgewall Software
# All rights reserved.
#
Severity: Major
Found in trac/util/html.py - About 1 day to fix

    Function html_attribute has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def html_attribute(key, val):
        """Returns the actual value for the attribute ``key``, for the given
        ``value``.
    
        This follows the rules described in the HTML5_ spec (Double-quoted
    Severity: Minor
    Found in trac/util/html.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function stripentities has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

    def stripentities(text, keepxmlentities=False):
        """Return a copy of the given text with any character or numeric entities
        replaced by the equivalent UTF-8 characters.
    
        >>> stripentities('1 < 2')
    Severity: Minor
    Found in trac/util/html.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function is_safe_origin has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

    def is_safe_origin(safe_origins, uri, req=None):
        """Whether the given uri is a safe cross-origin."""
        if not uri or ':' not in uri and not uri.startswith('//'):
            return True
        if any(safe == '*' for safe in safe_origins):
    Severity: Minor
    Found in trac/util/html.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function find_element has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    def find_element(frag, attr=None, cls=None, tag=None):
        """Return the first element in the fragment having the given
        attribute, class or tag, using a preorder depth-first search.
    
        """
    Severity: Minor
    Found in trac/util/html.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function sanitize_attrs has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        def sanitize_attrs(self, tag, attrs):
            """Remove potentially dangerous attributes and sanitize the style
            attribute .
    
            :param tag: the tag name of the element
    Severity: Minor
    Found in trac/util/html.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function append has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def append(self, arg):
            if arg: # ignore most false values (None, False, [], (), ''), except 0!
                if isinstance(arg, (Fragment, str, bytes, int, float)):
                    self.children.append(arg)
                else:
    Severity: Minor
    Found in trac/util/html.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function __str__ has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def __str__(self):
            elt = '<' + self.tag
            if self.attrib:
                # Sorting the attributes makes the unit-tests more robust
                attrs = []
    Severity: Minor
    Found in trac/util/html.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function __init__ has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, out):
            HTMLParser.__init__(self)
            self.out = out
            if isinstance(out, io.TextIOBase):
                self._convert = lambda v: v.decode('utf-8') \
    Severity: Minor
    Found in trac/util/html.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function sanitize_css has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def sanitize_css(self, text):
            """Remove potentially dangerous property declarations from CSS code.
    
            In particular, properties using the CSS ``url()`` function
            with a scheme that is not considered safe are removed:
    Severity: Minor
    Found in trac/util/html.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function _dict_from_kwargs has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def _dict_from_kwargs(self, kwargs):
            attrs = []
            for k, v in kwargs.items():
                if v is not None:
                    if k[-1:] == '_':
    Severity: Minor
    Found in trac/util/html.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function _replace_unicode_escapes has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def _replace_unicode_escapes(self, text):
            def _repl(match):
                t = match.group(1)
                if t:
                    code = int(t, 16)
    Severity: Minor
    Found in trac/util/html.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(self, safe_schemes=SAFE_SCHEMES, safe_css=SAFE_CSS,
    Severity: Minor
    Found in trac/util/html.py - About 45 mins to fix

      Function escape has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def escape(text, quotes=True):
          """Create a Markup instance from a string and escape special characters
          it may contain (<, >, & and \").
      
          :param text: the string to escape; if not a string, it is assumed that
      Severity: Minor
      Found in trac/util/html.py - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function __call__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def __call__(self, *args, **kwargs):
              if kwargs:
                  d = self._dict_from_kwargs(kwargs)
                  if d:
                      if self.attrib:
      Severity: Minor
      Found in trac/util/html.py - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function replace has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def replace(self, fullmatch):
              for mtype, match in fullmatch.groupdict().items():
                  if match:
                      if mtype == 'font':
                          return '<span>'
      Severity: Minor
      Found in trac/util/html.py - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Avoid too many return statements within this function.
      Open

          return Markup(str(e).replace('&#34;', '"').replace('&#39;', "'"))
      Severity: Major
      Found in trac/util/html.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

            return False
        Severity: Major
        Found in trac/util/html.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                              return ref
          Severity: Major
          Found in trac/util/html.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                    return e
            Severity: Major
            Found in trac/util/html.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                          return True
              Severity: Major
              Found in trac/util/html.py - About 30 mins to fix

                Function handle_starttag has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    def handle_starttag(self, tag, attrs):
                        HTMLTransform.handle_starttag(self, tag, attrs)
                        if tag.lower() == 'form':
                            for name, value in attrs:
                                if name == 'method' and value.lower() == 'post':
                Severity: Minor
                Found in trac/util/html.py - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                        html_attrs = ''.join(' %s="%s"' % (name, escape(new_attrs[name]))
                                             for name in sorted(new_attrs))
                Severity: Major
                Found in trac/util/html.py and 1 other location - About 1 hr to fix
                trac/wiki/macros.py on lines 736..737

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 38.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                There are no issues that match your filters.

                Category
                Status