tomi77/tastypie-sorl-thumbnail

View on GitHub

Showing 176 of 176 total issues

Function performObjectSearch has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  performObjectSearch : function(object, otherterms) {
    var filenames = this._index.filenames;
    var objects = this._index.objects;
    var objnames = this._index.objnames;
    var titles = this._index.titles;
Severity: Minor
Found in docs/html/_static/searchtools.js - About 2 hrs to fix

    Consider simplifying this complex logical expression.
    Open

                    if ( ( mappedTypes || origType === handleObj.origType ) &&
                        ( !handler || handler.guid === handleObj.guid ) &&
                        ( !tmp || tmp.test( handleObj.namespace ) ) &&
                        ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
                        handlers.splice( j, 1 );
    Severity: Critical
    Found in docs/html/_static/jquery-1.11.1.js - About 2 hrs to fix

      Function internalRemoveData has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function internalRemoveData( elem, name, pvt ) {
          if ( !jQuery.acceptData( elem ) ) {
              return;
          }
      
      
      Severity: Minor
      Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

        Function initEvents has 48 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          function initEvents() {
            $(document).on("click", 'a.comment-close', function(event) {
              event.preventDefault();
              hide($(this).attr('id').substring(2));
            });
        Severity: Minor
        Found in docs/html/_static/websupport.js - About 1 hr to fix

          Function select has 47 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          select = Sizzle.select = function( selector, context, results, seed ) {
              var i, tokens, token, type, find,
                  compiled = typeof selector === "function" && selector,
                  match = !seed && tokenize( (selector = compiled.selector || selector) );
          
          
          Severity: Minor
          Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

            Function internalData has 47 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function internalData( elem, name, data, pvt /* Internal Use Only */ ) {
                if ( !jQuery.acceptData( elem ) ) {
                    return;
                }
            
            
            Severity: Minor
            Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

              Function tokenize has 46 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
                  var matched, match, tokens, type,
                      soFar, groups, preFilters,
                      cached = tokenCache[ selector + " " ];
              
              
              Severity: Minor
              Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

                Function matcherFromTokens has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function matcherFromTokens( tokens ) {
                    var checkContext, matcher, j,
                        len = tokens.length,
                        leadingRelative = Expr.relative[ tokens[0].type ],
                        implicitRelative = leadingRelative || Expr.relative[" "],
                Severity: Minor
                Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

                  Function addComment has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    function addComment(form) {
                      var node_id = form.find('input[name="node"]').val();
                      var parent_id = form.find('input[name="parent"]').val();
                      var text = form.find('textarea[name="comment"]').val();
                      var proposal = form.find('textarea[name="proposal"]').val();
                  Severity: Minor
                  Found in docs/html/_static/websupport.js - About 1 hr to fix

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

                      initOnKeyListeners: function() {
                        $(document).keyup(function(event) {
                          var activeElementType = document.activeElement.tagName;
                          // don't navigate when in search box or textarea
                          if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT') {
                    Severity: Minor
                    Found in docs/html/_static/doctools.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

                    Consider simplifying this complex logical expression.
                    Open

                                if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
                                    ( support.htmlSerialize || !rnoshimcache.test( value )  ) &&
                                    ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
                                    !wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) {
                    
                    
                    Severity: Critical
                    Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

                      Consider simplifying this complex logical expression.
                      Open

                      if (!jQuery.browser) {
                        jQuery.uaMatch = function(ua) {
                          ua = ua.toLowerCase();
                      
                          var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
                      Severity: Critical
                      Found in docs/html/_static/doctools.js - About 1 hr to fix

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

                            stop: function( type, clearQueue, gotoEnd ) {
                                var stopQueue = function( hooks ) {
                                    var stop = hooks.stop;
                                    delete hooks.stop;
                                    stop( gotoEnd );
                        Severity: Minor
                        Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

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

                          jQuery.extend = jQuery.fn.extend = function() {
                              var src, copyIsArray, copy, name, options, clone,
                                  target = arguments[0] || {},
                                  i = 1,
                                  length = arguments.length,
                          Severity: Minor
                          Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

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

                                val: function( value ) {
                                    var hooks, ret, isFunction,
                                        elem = this[0];
                            
                                    if ( !arguments.length ) {
                            Severity: Minor
                            Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

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

                                $.fn.comment = function() {
                                  return this.each(function() {
                                    var id = $(this).attr('id').substring(1);
                                    var count = COMMENT_METADATA[id];
                                    var title = count + ' comment' + (count == 1 ? '' : 's');
                              Severity: Minor
                              Found in docs/html/_static/websupport.js - About 1 hr to fix

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

                                    on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
                                        var type, origFn;
                                
                                        // Types can be a map of types/handlers
                                        if ( typeof types === "object" ) {
                                Severity: Minor
                                Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

                                  Function sphinx-rtd-theme has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                  require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({"sphinx-rtd-theme":[function(require,module,exports){
                                  var jQuery = (typeof(window) != 'undefined') ? window.jQuery : require('jquery');
                                  
                                  // Sphinx theme nav state
                                  function ThemeNav () {
                                  Severity: Minor
                                  Found in docs/html/_static/js/theme.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 addCombinator has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                  function addCombinator( matcher, combinator, base ) {
                                      var dir = combinator.dir,
                                          checkNonElements = base && dir === "parentNode",
                                          doneName = done++;
                                  
                                  
                                  Severity: Minor
                                  Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix

                                    Function computeStyleTests has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                        function computeStyleTests() {
                                            // Minified: var b,c,d,j
                                            var div, body, container, contents;
                                    
                                            body = document.getElementsByTagName( "body" )[ 0 ];
                                    Severity: Minor
                                    Found in docs/html/_static/jquery-1.11.1.js - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language