lancew/DojoList

View on GitHub

Showing 216 of 1,940 total issues

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

function halt($errno = SERVER_ERROR, $msg = '', $debug_args = null)
{
  $args = func_get_args();
  $error = array_shift($args);

Severity: Minor
Found in lib/limonade.php - 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 debug has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function debug($var, $output_as_html = true)
{ 
  if ( is_null($var) ) { return '<span class="null-value">[NULL]</span>'; };
  $out = '';
  switch ($var) 
Severity: Minor
Found in lib/limonade.php - 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 http_ua_accepts has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function http_ua_accepts($type, $env = null)
{
  if(is_null($env)) $env = env();
  $accept = array_key_exists('HTTP_ACCEPT', $env['SERVER']) ? $env['SERVER']['HTTP_ACCEPT'] : null;
  
Severity: Minor
Found in lib/limonade.php - 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

Consider simplifying this complex logical expression.
Open

      if (child.className && (cn = ' ' + child.className + ' ') && (cn.include(className) ||
          (classNames && classNames.all(function(name) {
            return !name.toString().blank() && cn.include(' ' + name + ' ');
          }))))
        elements.push(Element.extend(child));
Severity: Major
Found in js/prototype/prototype-1.6.0.3.js - About 40 mins to fix

    Consider simplifying this complex logical expression.
    Open

        if (Object.isString(insertions) || Object.isNumber(insertions) ||
            Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
              insertions = {bottom:insertions};
    Severity: Major
    Found in js/prototype/prototype-1.6.0.3.js - About 40 mins to fix

      Consider simplifying this complex logical expression.
      Open

              if(
                  window.BoundingBox ||
                  window.LatLonPoint ||
                  window.Mapstraction ||
                  window.Marker ||
      Severity: Major
      Found in js/mapstraction.js - About 40 mins to fix

        Consider simplifying this complex logical expression.
        Open

            if (this.closed    || this.points[0].equals(this.points[length-1])) {
                m24poly = new Map24.Polygon({
                    Longitudes: m24longs,
                    Latitudes: m24lats,
                    FillColor: [this.color || "grey", this.opacity || "0.5"],
        Severity: Major
        Found in js/mapstraction.js - About 40 mins to fix

          Consider simplifying this complex logical expression.
          Open

              if (this.closed    || this.points[0].equals(this.points[length-1])) {
                  var vmpoly = new VMPolygonShape(vmpoints, this.color, this.width || 5, this.fillColor, this.opacity || 0.2);
              }
              else {
                  var vmpoly = new VMPolyLine(vmpoints, this.color, this.width || 5, this.opacity || 0.5);
          Severity: Major
          Found in js/mapstraction.js - About 40 mins to fix

            Function pseudo has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                pseudo: function(nodes, name, value, root, combinator) {
            Severity: Minor
            Found in js/prototype/prototype-1.6.0.3.js - About 35 mins to fix

              Function nth has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  nth: function(nodes, formula, root, reverse, ofType) {
              Severity: Minor
              Found in js/prototype/prototype-1.6.0.3.js - About 35 mins to fix

                Function addTileLayer has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                Mapstraction.prototype.addTileLayer = function(tile_url, opacity, copyright_text, min_zoom, max_zoom) {
                Severity: Minor
                Found in js/mapstraction.js - About 35 mins to fix

                  Method recaptcha_check_answer has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                  function recaptcha_check_answer($privkey, $remoteip, $challenge, $response, $extra_params = array())
                  Severity: Minor
                  Found in lib/recaptchalib.php - About 35 mins to fix

                    Method test_request has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                    function test_request($url, $method="GET", $include_header=false, $post_data=array(), $http_header=array()) {
                    Severity: Minor
                    Found in lib/limonade/tests.php - About 35 mins to fix

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

                          byClassName: function(nodes, root, className) {
                            if (!nodes) nodes = Selector.handlers.descendant([root]);
                            var needle = ' ' + className + ' ';
                            for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) {
                              nodeClassName = node.className;
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

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

                      if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) {
                        i || (i = 0);
                        var length = this.length;
                        if (i < 0) i = length + i;
                        for (; i < length; i++)
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

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

                        Element.Methods.update = function(element, content) {
                          element = $(element);
                      
                          if (content && content.toElement) content = content.toElement();
                          if (Object.isElement(content)) return element.update().insert(content);
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

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

                      if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) {
                        i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1;
                        var n = this.slice(0, i).reverse().indexOf(item);
                        return (n < 0) ? n : i - n - 1;
                      };
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

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

                          child: function(nodes) {
                            var h = Selector.handlers;
                            for (var i = 0, results = [], node; node = nodes[i]; i++) {
                              for (var j = 0, child; child = node.childNodes[j]; j++)
                                if (child.nodeType == 1 && child.tagName != '!') results.push(child);
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

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

                          attr: function(nodes, root, attr, value, operator, combinator) {
                            if (!nodes) nodes = root.getElementsByTagName("*");
                            if (nodes && combinator) nodes = this[combinator](nodes);
                            var handler = Selector.operators[operator], results = [];
                            for (var i = 0, node; node = nodes[i]; i++) {
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

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

                        toJSON: function(object) {
                          var type = typeof object;
                          switch (type) {
                            case 'undefined':
                            case 'function':
                      Severity: Minor
                      Found in js/prototype/prototype-1.6.0.3.js - 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

                      Severity
                      Category
                      Status
                      Source
                      Language