CaffGeek/MBACNationals

View on GitHub

Showing 5,566 of 7,504 total issues

Method get_description has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function get_description($description_only = false)
    {
        if ($return = $this->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'summary'))
        {
            return $this->sanitize($return[0]['data'], SimplePie_Misc::atom_10_construct_type($return[0]['attribs']), $this->get_base($return[0]));
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-includes/class-simplepie.php - About 1 hr to fix

    Method get_description has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function get_description()
        {
            if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'subtitle'))
            {
                return $this->sanitize($return[0]['data'], SimplePie_Misc::atom_10_construct_type($return[0]['attribs']), $this->get_base($return[0]));
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/class-simplepie.php - About 1 hr to fix

      Method find has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function find($type = SIMPLEPIE_LOCATOR_ALL, &$working)
          {
              if ($this->is_feed($this->file))
              {
                  return $this->file;
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/class-simplepie.php - About 1 hr to fix

        Method get_description has 40 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function get_description()
            {
                if ($return = $this->get_source_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'subtitle'))
                {
                    return $this->sanitize($return[0]['data'], SimplePie_Misc::atom_10_construct_type($return[0]['attribs']), $this->get_base($return[0]));
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/class-simplepie.php - About 1 hr to fix

          Method offsetGet has 40 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function offsetGet( $offset ) {
                  switch ( $offset ) {
                      case 'Name' :
                      case 'Title' :
                          // See note above about using translated data. get() is not ideal.
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/class-wp-theme.php - About 1 hr to fix

            Method wpmu_activate_signup has 40 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function wpmu_activate_signup($key) {
                global $wpdb;
            
                $signup = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->signups WHERE activation_key = %s", $key) );
            
            
            Severity: Minor
            Found in Web.Admin/2014/wordpress/wp-includes/ms-functions.php - About 1 hr to fix

              Method get_adjacent_post has 40 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function get_adjacent_post($in_same_cat = false, $excluded_categories = '', $previous = true) {
                  global $post, $wpdb;
              
                  if ( empty($post) || !is_single() || is_attachment() )
                      return null;
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/link-template.php - About 1 hr to fix

                Function buildGame has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  buildGame(aShots: string): any {
                    const upperShots = aShots.toUpperCase();
                
                    const game = { frames: [], score: 0, fouls: 0 };
                    const normalizedShots = [];

                  Method Connect has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    function Connect($host,$port=0,$tval=30) {
                      # set the error val to null so there is no confusion
                      $this->error = null;
                  
                      # make sure we are __not__ connected
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/class-smtp.php - About 1 hr to fix

                    Function dw_getElementsByClassName has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function dw_getElementsByClassName(sClass, sTag, oCont) {
                        var result = [], list, i;
                        var re = new RegExp("\\b" + sClass + "\\b", "i");
                        oCont = oCont? oCont: document;
                        if ( document.getElementsByTagName ) {
                    Severity: Minor
                    Found in Web.Admin/2015/js/dw_rotator_aux.js - 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 dw_getElementsByClassName has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function dw_getElementsByClassName(sClass, sTag, oCont) {
                        var result = [], list, i;
                        var re = new RegExp("\\b" + sClass + "\\b", "i");
                        oCont = oCont? oCont: document;
                        if ( document.getElementsByTagName ) {
                    Severity: Minor
                    Found in Web.Admin/2014/js/dw_rotator_aux.js - 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 message has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                        message : function(show) {
                            var t = this, msg1 = t.I('gears-msg1'), msg2 = t.I('gears-msg2'), msg3 = t.I('gears-msg3'), msg4 = t.I('gears-msg4'), num = t.I('gears-upd-number'), wait = t.I('gears-wait');
                    
                            if ( ! msg1 ) return;
                    
                    
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-admin/js/wp-gears.dev.js - 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 URLEncode has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    jQuery.extend({URLEncode:function(c){var o='';var x=0;c=c.toString();var r=/(^[a-zA-Z0-9_.]*)/;
                      while(x<c.length){var m=r.exec(c.substr(x));
                        if(m!=null && m.length>1 && m[1]!=''){o+=m[1];x+=m[1].length;
                        }else{if(c[x]==' ')o+='+';else{var d=c.charCodeAt(x);var h=d.toString(16);
                        o+='%'+(h.length<2?'0':'')+h.toUpperCase();}x++;}}return o;}
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-content/plugins/akismet/_inc/akismet.js - 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 PopupWindow_refresh has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    function PopupWindow_refresh() {
                        if (this.divName != null) {
                            // refresh the DIV object
                            if (this.use_gebi) {
                                document.getElementById(this.divName).innerHTML = this.contents;
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/colorpicker.dev.js - 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 compileMatcher has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                      compileMatcher: function() {
                        // Selectors with namespaced attributes can't use the XPath version
                        if (Prototype.BrowserFeatures.XPath && !(/(\[[\w-]*?:|:checked)/).test(this.expression))
                          return this.compileXPathMatcher();
                    
                    
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/prototype.js - 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 select has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                      select: function(element, index) {
                        if (index === undefined)
                          return this[element.type == 'select-one' ?
                            'selectOne' : 'selectMany'](element);
                        else {
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/prototype.js - 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 setRequestHeaders has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                      setRequestHeaders: function() {
                        var headers = {
                          'X-Requested-With': 'XMLHttpRequest',
                          'X-Prototype-Version': Prototype.Version,
                          'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/prototype.js - 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 getElementsByClassName has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
                      function iter(name) {
                        return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
                      }
                    
                    
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/prototype.js - 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 select has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                      select: function(element, index) {
                        if (index === undefined)
                          return this[element.type == 'select-one' ?
                            'selectOne' : 'selectMany'](element);
                        else {
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/scriptaculous/prototype.js - 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 getElementsByClassName has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                    Open

                    if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
                      function iter(name) {
                        return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
                      }
                    
                    
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/scriptaculous/prototype.js - 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

                    Severity
                    Category
                    Status
                    Source
                    Language