HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //home/arjun/projects/env/lib/python3.10/site-packages/flask_debugtoolbar/static/js/toolbar.js
(function($) {
  $.cookie = function(name, value, options) { if (typeof value != 'undefined') { options = options || {}; if (value === null) { value = ''; options.expires = -1; } var expires = ''; if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); } var path = options.path ? '; path=' + (options.path) : ''; var domain = options.domain ? '; domain=' + (options.domain) : ''; var secure = options.secure ? '; secure' : ''; document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = $.trim(cookies[i]); if (cookie.substring(0, name.length + 1) == (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } };
  $('head').append('<link rel="stylesheet" href="'+DEBUG_TOOLBAR_STATIC_PATH+'css/toolbar.css?'+ Math.random() +'" type="text/css" />');
  var COOKIE_NAME = 'fldt';
  var COOKIE_NAME_ACTIVE = COOKIE_NAME +'_active';
  var fldt = {
    init: function() {
      $('#flDebug').show();
      var current = null;
      $('#flDebugPanelList li a').click(function() {
        if (!this.className) {
          return false;
        }
        current = $('#flDebug #' + this.className + '-content');
        if (current.is(':visible')) {
          $(document).trigger('close.flDebug');
          $(this).parent().removeClass('flDebugActive');
        } else {
          $('.flDebugPanelContentParent').hide(); // Hide any that are already open
          current.show();
          $('#flDebugToolbar li').removeClass('flDebugActive');
          $(this).parent().addClass('flDebugActive');
        }
        return false;
      });
      $('#flDebugPanelList li .flDebugSwitch').click(function() {
        var $panel = $(this).parent();
        var $this = $(this);
        var dom_id = $panel.attr('id');

        // Turn cookie content into an array of active panels
        var active_str = $.cookie(COOKIE_NAME_ACTIVE);
        var active = (active_str) ? active_str.split(';') : [];
        active = $.grep(active, function(n,i) { return n != dom_id; });

        if ($this.hasClass('flDebugActive')) {
          $this.removeClass('flDebugActive');
          $this.addClass('flDebugInactive');
        } else {
          active.push(dom_id);
          $this.removeClass('flDebugInactive');
          $this.addClass('flDebugActive');
        }

        if (active.length > 0) {
          $.cookie(COOKIE_NAME_ACTIVE, active.join(';'), {
            path: '/', expires: 10
          });
        } else {
          $.cookie(COOKIE_NAME_ACTIVE, null, {
            path: '/', expires: -1
          });
        }
      });
      $('#flDebug a.flDebugClose').click(function() {
        $(document).trigger('close.flDebug');
        $('#flDebugToolbar li').removeClass('flDebugActive');
        return false;
      });
      $('#flDebug a.flDebugRemoteCall').click(function() {
        $('#flDebugWindow').load(this.href, {}, function() {
          $('#flDebugWindow a.flDebugBack').click(function() {
            $(this).parent().parent().hide();
            return false;
          });
        });
        $('#flDebugWindow').show();
        return false;
      });
      $('#flDebugTemplatePanel a.flDebugTemplateShowContext').click(function() {
        fldt.toggle_arrow($(this).children('.flDebugToggleArrow'))
        fldt.toggle_content($(this).parent().next());
        return false;
      });
      $('#flDebugSQLPanel a.flDebugShowStacktrace').click(function() {
        fldt.toggle_content($('.flDebugHideStacktraceDiv', $(this).parents('tr')));
        return false;
      });
      $('#flDebugHideToolBarButton').click(function() {
        fldt.hide_toolbar(true);
        return false;
      });
      $('#flDebugShowToolBarButton').click(function() {
        fldt.show_toolbar();
        return false;
      });
      $(document).bind('close.flDebug', function() {
        // If a sub-panel is open, close that
        if ($('#flDebugWindow').is(':visible')) {
          $('#flDebugWindow').hide();
          return;
        }
        // If a panel is open, close that
        if ($('.flDebugPanelContentParent').is(':visible')) {
          $('.flDebugPanelContentParent').hide();
          return;
        }
        // Otherwise, just minimize the toolbar
        if ($('#flDebugToolbar').is(':visible')) {
          fldt.hide_toolbar(true);
          return;
        }
      });
      if ($.cookie(COOKIE_NAME)) {
        fldt.hide_toolbar(false);
      } else {
        fldt.show_toolbar(false);
      }
      $('#flDebug table.flDebugTablesorter').each(function() {
          var headers = {};
          $(this).find('thead th').each(function(idx, elem) {
            headers[idx] = $(elem).data();
          });
          $(this).tablesorter({headers: headers});
        })
        .bind('sortEnd', function() {
          $(this).find('tbody tr').each(function(idx, elem) {
            var even = idx % 2 === 0;
            $(elem)
              .toggleClass('flDebugEven', even)
              .toggleClass('flDebugOdd', !even);
          });
        });
    },
    toggle_content: function(elem) {
      if (elem.is(':visible')) {
        elem.hide();
      } else {
        elem.show();
      }
    },
    close: function() {
      $(document).trigger('close.flDebug');
      return false;
    },
    hide_toolbar: function(setCookie) {
      // close any sub panels
      $('#flDebugWindow').hide();
      // close all panels
      $('.flDebugPanelContentParent').hide();
      $('#flDebugToolbar li').removeClass('flDebugActive');
      // finally close toolbar
      $('#flDebugToolbar').hide('fast');
      $('#flDebugToolbarHandle').show();
      // Unbind keydown
      $(document).unbind('keydown.flDebug');
      if (setCookie) {
        $.cookie(COOKIE_NAME, 'hide', {
          path: '/',
          expires: 10
        });
      }
    },
    show_toolbar: function(animate) {
      // Set up keybindings
      $(document).bind('keydown.flDebug', function(e) {
        if (e.keyCode == 27) {
          fldt.close();
        }
      });
      $('#flDebugToolbarHandle').hide();
      if (animate) {
        $('#flDebugToolbar').show('fast');
      } else {
        $('#flDebugToolbar').show();
      }
      $.cookie(COOKIE_NAME, null, {
        path: '/',
        expires: -1
      });
    },
    toggle_arrow: function(elem) {
      var uarr = String.fromCharCode(0x25b6);
      var darr = String.fromCharCode(0x25bc);
      elem.html(elem.html() == uarr ? darr : uarr);
    },
    load_href: function(href) {
      $.get(href, function(data, status, xhr) {
        document.open();
        document.write(xhr.responseText);
        document.close();
      });
      return false;
    },
    $: $
  };
  $(document).ready(function() {
    fldt.init();
  });
  window.fldt = fldt;

})(jQuery.noConflict(true));