aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/media
diff options
context:
space:
mode:
authorPercy Perez-Pinedo2009-07-20 15:46:57 -0700
committerPercy Perez-Pinedo2009-07-20 15:46:57 -0700
commitb7629d5768295131c35d613dbb16d9a070474c77 (patch)
treef7557bdc972287765a0bb687c2fecf04ddd0718f /debug_toolbar/media
parent073ab2c8255ebc310a54e9f937b4b17f94f7eac2 (diff)
parent4dc0710b6a5eedec0448909f6b90e55a4f3555d4 (diff)
downloaddjango-debug-toolbar-b7629d5768295131c35d613dbb16d9a070474c77.tar.bz2
removing trans so we can merge for now
Diffstat (limited to 'debug_toolbar/media')
-rw-r--r--debug_toolbar/media/debug_toolbar/Makefile (renamed from debug_toolbar/media/Makefile)1
-rw-r--r--debug_toolbar/media/debug_toolbar/jquery.cookie.js96
-rw-r--r--debug_toolbar/media/debug_toolbar/jquery.js (renamed from debug_toolbar/media/jquery.js)0
-rw-r--r--debug_toolbar/media/debug_toolbar/toolbar.css (renamed from debug_toolbar/media/toolbar.css)27
-rw-r--r--debug_toolbar/media/debug_toolbar/toolbar.js105
-rw-r--r--debug_toolbar/media/debug_toolbar/toolbar.min.css1
-rw-r--r--debug_toolbar/media/debug_toolbar/toolbar.min.js1
-rw-r--r--debug_toolbar/media/toolbar.js66
-rw-r--r--debug_toolbar/media/toolbar.min.css1
-rw-r--r--debug_toolbar/media/toolbar.min.js1
10 files changed, 230 insertions, 69 deletions
diff --git a/debug_toolbar/media/Makefile b/debug_toolbar/media/debug_toolbar/Makefile
index 7f8f2b2..a2d6abb 100644
--- a/debug_toolbar/media/Makefile
+++ b/debug_toolbar/media/debug_toolbar/Makefile
@@ -3,6 +3,7 @@ all: compress_js compress_css
compress_js:
java -jar ~/bin/yuicompressor.jar toolbar.js > toolbar.min.js
+ java -jar ~/bin/yuicompressor.jar jquery.cookie.js >> toolbar.min.js
compress_css:
java -jar ~/bin/yuicompressor.jar --type css toolbar.css > toolbar.min.css
diff --git a/debug_toolbar/media/debug_toolbar/jquery.cookie.js b/debug_toolbar/media/debug_toolbar/jquery.cookie.js
new file mode 100644
index 0000000..6df1fac
--- /dev/null
+++ b/debug_toolbar/media/debug_toolbar/jquery.cookie.js
@@ -0,0 +1,96 @@
+/**
+ * Cookie plugin
+ *
+ * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
+ * Dual licensed under the MIT and GPL licenses:
+ * http://www.opensource.org/licenses/mit-license.php
+ * http://www.gnu.org/licenses/gpl.html
+ *
+ */
+
+/**
+ * Create a cookie with the given name and value and other optional parameters.
+ *
+ * @example $.cookie('the_cookie', 'the_value');
+ * @desc Set the value of a cookie.
+ * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
+ * @desc Create a cookie with all available options.
+ * @example $.cookie('the_cookie', 'the_value');
+ * @desc Create a session cookie.
+ * @example $.cookie('the_cookie', null);
+ * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
+ * used when the cookie was set.
+ *
+ * @param String name The name of the cookie.
+ * @param String value The value of the cookie.
+ * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
+ * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
+ * If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
+ * If set to null or omitted, the cookie will be a session cookie and will not be retained
+ * when the the browser exits.
+ * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
+ * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
+ * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
+ * require a secure protocol (like HTTPS).
+ * @type undefined
+ *
+ * @name $.cookie
+ * @cat Plugins/Cookie
+ * @author Klaus Hartl/klaus.hartl@stilbuero.de
+ */
+
+/**
+ * Get the value of a cookie with the given name.
+ *
+ * @example $.cookie('the_cookie');
+ * @desc Get the value of a cookie.
+ *
+ * @param String name The name of the cookie.
+ * @return The value of the cookie.
+ * @type String
+ *
+ * @name $.cookie
+ * @cat Plugins/Cookie
+ * @author Klaus Hartl/klaus.hartl@stilbuero.de
+ */
+jQuery.cookie = function(name, value, options) {
+ if (typeof value != 'undefined') { // name and value given, set cookie
+ 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(); // use expires attribute, max-age is not supported by IE
+ }
+ // CAUTION: Needed to parenthesize options.path and options.domain
+ // in the following expressions, otherwise they evaluate to undefined
+ // in the packed version for some reason...
+ 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 { // only name given, get cookie
+ var cookieValue = null;
+ if (document.cookie && document.cookie != '') {
+ var cookies = document.cookie.split(';');
+ for (var i = 0; i < cookies.length; i++) {
+ var cookie = jQuery.trim(cookies[i]);
+ // Does this cookie string begin with the name we want?
+ if (cookie.substring(0, name.length + 1) == (name + '=')) {
+ cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
+ break;
+ }
+ }
+ }
+ return cookieValue;
+ }
+}; \ No newline at end of file
diff --git a/debug_toolbar/media/jquery.js b/debug_toolbar/media/debug_toolbar/jquery.js
index 82b98e1..82b98e1 100644
--- a/debug_toolbar/media/jquery.js
+++ b/debug_toolbar/media/debug_toolbar/jquery.js
diff --git a/debug_toolbar/media/toolbar.css b/debug_toolbar/media/debug_toolbar/toolbar.css
index 2ce4226..9ef6dc3 100644
--- a/debug_toolbar/media/toolbar.css
+++ b/debug_toolbar/media/debug_toolbar/toolbar.css
@@ -4,6 +4,7 @@
margin: 0;
padding: 0;
position: static;
+ text-align: left;
}
#djDebug a {
color: #f7c757;
@@ -23,6 +24,27 @@
right:0;
}
+#djDebugToolbarHandle {
+ background: #326342;
+ height: 30px;
+ z-index: 100000000;
+ border-bottom: 2px solid #234f32;
+ position:absolute;
+ top:0;
+ left:0;
+ right:0;
+ width: 16px;
+}
+
+#djDebugToolbarHandle ul li {
+ padding: 3px 0px 0px 3px;
+}
+
+#djDebugToolbarHandle ul li a {
+ font-size: 16px;
+ font-weight: bold;
+}
+
#djDebugToolbar ul {
margin: 0;
padding: 0;
@@ -65,6 +87,9 @@
background-color: #ffffff;
}
+#djDebug tr.djDebugOdd pre {
+ background-color: #eeeeee;
+}
#djDebug .panelContent {
background: #2a5738;
@@ -132,7 +157,7 @@
color: #000;
vertical-align: top;
}
-#djDebug .panelContent table tr.odd td {
+#djDebug .panelContent table tr.djDebugOdd td {
background: #eee;
}
diff --git a/debug_toolbar/media/debug_toolbar/toolbar.js b/debug_toolbar/media/debug_toolbar/toolbar.js
new file mode 100644
index 0000000..40e1a58
--- /dev/null
+++ b/debug_toolbar/media/debug_toolbar/toolbar.js
@@ -0,0 +1,105 @@
+jQuery.noConflict();
+jQuery(function($j) {
+ var COOKIE_NAME = 'dj_debug_panel';
+ $j.djDebug = function(data, klass) {
+ $j.djDebug.init();
+ }
+ $j.extend($j.djDebug, {
+ init: function() {
+ var current = null;
+ $j('#djDebugPanelList li a').click(function() {
+ if (!this.className) {
+ return false;
+ }
+ current = $j('#djDebug #' + this.className);
+ if (current.is(':visible')) {
+ $j(document).trigger('close.djDebug');
+ } else {
+ $j('.panelContent').hide();
+ current.show();
+ $j.djDebug.open();
+ }
+ return false;
+ });
+ $j('#djDebug a.close').click(function() {
+ $j(document).trigger('close.djDebug');
+ return false;
+ });
+ $j('#djDebug a.remoteCall').click(function() {
+ $j('#djDebugWindow').load(this.href, {}, function() {
+ $j('#djDebugWindow a.back').click(function() {
+ $j(this).parent().hide();
+ return false;
+ });
+ });
+ $j('#djDebugWindow').show();
+ return false;
+ });
+ $j('#djDebugTemplatePanel a.djTemplateShowContext').click(function() {
+ $j.djDebug.toggle_content($j(this).parent().next());
+ return false;
+ });
+ $j('#djDebugSQLPanel a.djSQLShowStacktrace').click(function() {
+ $j.djDebug.toggle_content($j(this).parent().next());
+ return false;
+ });
+ $j('#djHideToolBarButton').click(function() {
+ $j.djDebug.hide_toolbar(true);
+ return false;
+ });
+ $j('#djShowToolBarButton').click(function() {
+ $j.djDebug.show_toolbar();
+ return false;
+ });
+ if ($j.cookie(COOKIE_NAME)) {
+ $j.djDebug.hide_toolbar(false);
+ } else {
+ $j('#djDebugToolbar').show();
+ }
+ },
+ open: function() {
+ $j(document).bind('keydown.djDebug', function(e) {
+ if (e.keyCode == 27) {
+ $j.djDebug.close();
+ }
+ });
+ },
+ toggle_content: function(elem) {
+ if (elem.is(':visible')) {
+ elem.hide();
+ } else {
+ elem.show();
+ }
+ },
+ close: function() {
+ $j(document).trigger('close.djDebug');
+ return false;
+ },
+ hide_toolbar: function(setCookie) {
+ $j('#djDebugToolbar').hide("fast");
+ $j(document).trigger('close.djDebug');
+ $j('#djDebugToolbarHandle').show();
+ if (setCookie) {
+ $j.cookie(COOKIE_NAME, 'hide', {
+ path: '/',
+ expires: 10
+ });
+ }
+ },
+ show_toolbar: function() {
+ $j('#djDebugToolbarHandle').hide();
+ $j('#djDebugToolbar').show("fast");
+ $j.cookie(COOKIE_NAME, null, {
+ path: '/',
+ expires: -1
+ });
+ }
+ });
+ $j(document).bind('close.djDebug', function() {
+ $j(document).unbind('keydown.djDebug');
+ $j('.panelContent').hide();
+ });
+});
+jQuery(function() {
+ jQuery.djDebug();
+});
diff --git a/debug_toolbar/media/debug_toolbar/toolbar.min.css b/debug_toolbar/media/debug_toolbar/toolbar.min.css
new file mode 100644
index 0000000..c172fbd
--- /dev/null
+++ b/debug_toolbar/media/debug_toolbar/toolbar.min.css
@@ -0,0 +1 @@
+#djDebug *{color:#000;float:none;margin:0;padding:0;position:static;text-align:left;}#djDebug a{color:#f7c757;}#djDebug a:hover{color:#aaa;}#djDebugToolbar{background:#326342;height:30px;z-index:100000000;border-bottom:2px solid #234f32;position:absolute;top:0;left:0;right:0;}#djDebugToolbarHandle{background:#326342;height:30px;z-index:100000000;border-bottom:2px solid #234f32;position:absolute;top:0;left:0;right:0;width:16px;}#djDebugToolbarHandle ul li{padding:3px 0 0 3px;}#djDebugToolbarHandle ul li a{font-size:16px;font-weight:bold;}#djDebugToolbar ul{margin:0;padding:0;list-style:none;}#djDebugToolbar li{border-left:1px solid #487858;color:#fff;display:inline;font-size:11px;font-weight:bold;float:none;height:20px;margin:0;padding:0;line-height:30px;padding:8px 9px 9px;position:relative;width:auto;}#djDebugToolbar li:hover{background:#487858;}#djDebugToolbar li:hover a{color:#fff;}#djDebugToolbar li:last-child{border-right:1px solid #487858;}#djDebugToolbar #djDebugButton{color:#92ef3f;}#djDebug pre{background-color:#fff;}#djDebug tr.djDebugOdd pre{background-color:#eee;}#djDebug .panelContent{background:#2a5738;border-bottom:2px solid #234f32;border-top:2px solid #487858;display:none;position:absolute;margin:0;padding:10px;top:32px;width:auto;left:0;right:0;bottom:5px;color:black;z-index:1000000;overflow:auto;}#djDebug .panelContent p a,#djDebug .panelContent dl a{color:#40684c;}#djDebug .panelContent p a:hover,#djDebug .panelContent dl a:hover{color:#92EF3F;}#djDebug .panelContent h3{border-bottom:1px solid #40684c;color:#92ef3f;padding:0 0 5px;}#djDebug .panelContent p{padding:0 5px;}#djDebug .panelContent p,#djDebug .panelContent table,#djDebug .panelContent ol,#djDebug .panelContent ul,#djDebug .panelContent dl{margin:5px 0 15px;background-color:#fff;}#djDebug .panelContent table{width:100%;clear:both;}#djDebug .panelContent table a{color:#40684C;}#djDebug .panelContent table th{background-color:#9dcc49;font-weight:bold;color:#000;font-size:11px;padding:3px 7px 3px;text-align:left;cursor:pointer;border-right:1px solid #b9d977;}#djDebug .panelContent table td{padding:5px 10px;font-size:11px;background:#fff;color:#000;vertical-align:top;}#djDebug .panelContent table tr.djDebugOdd td{background:#eee;}#djDebug .panelContent .close{float:right;font-weight:bold;}#djDebug .panelContent dt,#djDebug .panelContent dd{display:block;}#djDebug .panelContent dd{margin-left:10px;}#djDebug .highlight{color:#000;}#djDebug .highlight .err{color:#000;}#djDebug .highlight .g{color:#000;}#djDebug .highlight .k{color:#40684C;font-weight:bold;}#djDebug .highlight .o{color:#000;}#djDebug .highlight .n{color:#000;}#djDebug .highlight .mi{color:#40684C;font-weight:bold;}#djDebug .highlight .l{color:#000;}#djDebug .highlight .x{color:#000;}#djDebug .highlight .p{color:#000;}#djDebug .highlight .m{color:#40684C;font-weight:bold;}#djDebug .highlight .s{color:#0086d2;}#djDebug .highlight .w{color:#888;}#djDebug .highlight .il{color:#40684C;font-weight:bold;}#djDebug .highlight .na{color:#7D9029;}#djDebug .highlight .nt{color:#008000;font-weight:bold;}#djDebug .highlight .nv{color:#19177C;}#djDebug .highlight .s2{color:#BA2121;}#djDebug .highlight .cp{color:#BC7A00;} \ No newline at end of file
diff --git a/debug_toolbar/media/debug_toolbar/toolbar.min.js b/debug_toolbar/media/debug_toolbar/toolbar.min.js
new file mode 100644
index 0000000..7f8658f
--- /dev/null
+++ b/debug_toolbar/media/debug_toolbar/toolbar.min.js
@@ -0,0 +1 @@
+jQuery.noConflict();jQuery(function(b){var a="dj_debug_panel";b.djDebug=function(d,c){b.djDebug.init()};b.extend(b.djDebug,{init:function(){var c=null;b("#djDebugPanelList li a").click(function(){if(!this.className){return false}c=b("#djDebug #"+this.className);if(c.is(":visible")){b(document).trigger("close.djDebug")}else{b(".panelContent").hide();c.show();b.djDebug.open()}return false});b("#djDebug a.close").click(function(){b(document).trigger("close.djDebug");return false});b("#djDebug a.remoteCall").click(function(){b("#djDebugWindow").load(this.href,{},function(){b("#djDebugWindow a.back").click(function(){b(this).parent().hide();return false})});b("#djDebugWindow").show();return false});b("#djDebugTemplatePanel a.djTemplateShowContext").click(function(){b.djDebug.toggle_content(b(this).parent().next());return false});b("#djDebugSQLPanel a.djSQLShowStacktrace").click(function(){b.djDebug.toggle_content(b(this).parent().next());return false});b("#djHideToolBarButton").click(function(){b.djDebug.hide_toolbar(true);return false});b("#djShowToolBarButton").click(function(){b.djDebug.show_toolbar();return false});if(b.cookie(a)){b.djDebug.hide_toolbar(false)}else{b("#djDebugToolbar").show()}},open:function(){b(document).bind("keydown.djDebug",function(c){if(c.keyCode==27){b.djDebug.close()}})},toggle_content:function(c){if(c.is(":visible")){c.hide()}else{c.show()}},close:function(){b(document).trigger("close.djDebug");return false},hide_toolbar:function(c){b("#djDebugToolbar").hide("fast");b(document).trigger("close.djDebug");b("#djDebugToolbarHandle").show();if(c){b.cookie(a,"hide",{path:"/",expires:10})}},show_toolbar:function(){b("#djDebugToolbarHandle").hide();b("#djDebugToolbar").show("fast");b.cookie(a,null,{path:"/",expires:-1})}});b(document).bind("close.djDebug",function(){b(document).unbind("keydown.djDebug");b(".panelContent").hide()})});jQuery(function(){jQuery.djDebug()});jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";m.expires=-1}var e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){var f;if(typeof m.expires=="number"){f=new Date();f.setTime(f.getTime()+(m.expires*24*60*60*1000))}else{f=m.expires}e="; expires="+f.toUTCString()}var l=m.path?"; path="+(m.path):"";var g=m.domain?"; domain="+(m.domain):"";var a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var k=document.cookie.split(";");for(var h=0;h<k.length;h++){var c=jQuery.trim(k[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}}; \ No newline at end of file
diff --git a/debug_toolbar/media/toolbar.js b/debug_toolbar/media/toolbar.js
deleted file mode 100644
index 455a2fc..0000000
--- a/debug_toolbar/media/toolbar.js
+++ /dev/null
@@ -1,66 +0,0 @@
-var _$ = window.$;
-jQuery.noConflict();
-jQuery(function($) {
- $.djDebug = function(data, klass) {
- $.djDebug.init();
- }
- $.extend($.djDebug, {
- init: function() {
- var current = null;
- $('#djDebugPanelList li a').click(function() {
- current = $('#djDebug #' + this.className);
- if (current.is(':visible')) {
- $(document).trigger('close.djDebug');
- } else {
- $('.panelContent').hide();
- current.show();
- $.djDebug.open();
- }
- return false;
- });
- $('#djDebug a.close').click(function() {
- $(document).trigger('close.djDebug');
- return false;
- });
- $('#djDebug a.remoteCall').click(function() {
- $('#djDebugWindow').load(this.href, {}, function() {
- $('#djDebugWindow a.back').click(function() {
- $(this).parent().hide();
- return false;
- });
- });
- $('#djDebugWindow').show();
- return false;
- });
- $('#djDebugTemplatePanel a.djTemplateShowContext').click(function() {
- $.djDebug.toggle_content($(this).parent().next());
- });
- },
- open: function() {
- $(document).bind('keydown.djDebug', function(e) {
- if (e.keyCode == 27) {
- $.djDebug.close();
- }
- });
- },
- toggle_content: function(elem) {
- if (elem.is(':visible')) {
- elem.hide();
- } else {
- elem.show();
- }
- },
- close: function() {
- $(document).trigger('close.djDebug');
- return false;
- }
- });
- $(document).bind('close.djDebug', function() {
- $(document).unbind('keydown.djDebug');
- $('.panelContent').hide();
- });
-});
-jQuery(function() {
- jQuery.djDebug();
-});
-$ = _$;
diff --git a/debug_toolbar/media/toolbar.min.css b/debug_toolbar/media/toolbar.min.css
deleted file mode 100644
index bb7c034..0000000
--- a/debug_toolbar/media/toolbar.min.css
+++ /dev/null
@@ -1 +0,0 @@
-#djDebug *{color:#000;float:none;margin:0;padding:0;position:static;}#djDebug a{color:#f7c757;}#djDebug a:hover{color:#aaa;}#djDebugToolbar{background:#326342;height:30px;z-index:100000000;border-bottom:2px solid #234f32;position:absolute;top:0;left:0;right:0;}#djDebugToolbar ul{margin:0;padding:0;list-style:none;}#djDebugToolbar li{border-left:1px solid #487858;color:#fff;display:inline;font-size:11px;font-weight:bold;float:none;height:20px;margin:0;padding:0;line-height:30px;padding:8px 9px 9px;position:relative;width:auto;}#djDebugToolbar li:hover{background:#487858;}#djDebugToolbar li:hover a{color:#fff;}#djDebugToolbar li:last-child{border-right:1px solid #487858;}#djDebugToolbar #djDebugButton{color:#92ef3f;}#djDebug pre{background-color:#fff;}#djDebug .panelContent{background:#2a5738;border-bottom:2px solid #234f32;border-top:2px solid #487858;display:none;position:absolute;margin:0;padding:10px;top:32px;width:auto;left:0;right:0;bottom:5px;color:black;z-index:1000000;overflow:auto;}#djDebug .panelContent p a,#djDebug .panelContent dl a{color:#40684c;}#djDebug .panelContent p a:hover,#djDebug .panelContent dl a:hover{color:#92EF3F;}#djDebug .panelContent h3{border-bottom:1px solid #40684c;color:#92ef3f;padding:0 0 5px;}#djDebug .panelContent p{padding:0 5px;}#djDebug .panelContent p,#djDebug .panelContent table,#djDebug .panelContent ol,#djDebug .panelContent ul,#djDebug .panelContent dl{margin:5px 0 15px;background-color:#fff;}#djDebug .panelContent table{width:100%;clear:both;}#djDebug .panelContent table a{color:#40684C;}#djDebug .panelContent table th{background-color:#9dcc49;font-weight:bold;color:#000;font-size:11px;padding:3px 7px 3px;text-align:left;cursor:pointer;border-right:1px solid #b9d977;}#djDebug .panelContent table td{padding:5px 10px;font-size:11px;background:#fff;color:#000;vertical-align:top;}#djDebug .panelContent table tr.odd td{background:#eee;}#djDebug .panelContent .close{float:right;font-weight:bold;}#djDebug .panelContent dt,#djDebug .panelContent dd{display:block;}#djDebug .panelContent dd{margin-left:10px;}#djDebug .highlight{color:#000;}#djDebug .highlight .err{color:#000;}#djDebug .highlight .g{color:#000;}#djDebug .highlight .k{color:#40684C;font-weight:bold;}#djDebug .highlight .o{color:#000;}#djDebug .highlight .n{color:#000;}#djDebug .highlight .mi{color:#40684C;font-weight:bold;}#djDebug .highlight .l{color:#000;}#djDebug .highlight .x{color:#000;}#djDebug .highlight .p{color:#000;}#djDebug .highlight .m{color:#40684C;font-weight:bold;}#djDebug .highlight .s{color:#0086d2;}#djDebug .highlight .w{color:#888;}#djDebug .highlight .il{color:#40684C;font-weight:bold;}#djDebug .highlight .na{color:#7D9029;}#djDebug .highlight .nt{color:#008000;font-weight:bold;}#djDebug .highlight .nv{color:#19177C;}#djDebug .highlight .s2{color:#BA2121;}#djDebug .highlight .cp{color:#BC7A00;} \ No newline at end of file
diff --git a/debug_toolbar/media/toolbar.min.js b/debug_toolbar/media/toolbar.min.js
deleted file mode 100644
index 1f8b8b5..0000000
--- a/debug_toolbar/media/toolbar.min.js
+++ /dev/null
@@ -1 +0,0 @@
-var _$=window.$;jQuery.noConflict();jQuery(function(A){A.djDebug=function(C,B){A.djDebug.init()};A.extend(A.djDebug,{init:function(){var B=null;A("#djDebugPanelList li a").click(function(){B=A("#djDebug #"+this.className);if(B.is(":visible")){A(document).trigger("close.djDebug")}else{A(".panelContent").hide();B.show();A.djDebug.open()}return false});A("#djDebug a.close").click(function(){A(document).trigger("close.djDebug");return false});A("#djDebug a.remoteCall").click(function(){A("#djDebugWindow").load(this.href,{},function(){A("#djDebugWindow a.back").click(function(){A(this).parent().hide();return false})});A("#djDebugWindow").show();return false});A("#djDebugTemplatePanel a.djTemplateShowContext").click(function(){A.djDebug.toggle_content(A(this).parent().next())})},open:function(){A(document).bind("keydown.djDebug",function(B){if(B.keyCode==27){A.djDebug.close()}})},toggle_content:function(B){if(B.is(":visible")){B.hide()}else{B.show()}},close:function(){A(document).trigger("close.djDebug");return false}});A(document).bind("close.djDebug",function(){A(document).unbind("keydown.djDebug");A(".panelContent").hide()})});jQuery(function(){jQuery.djDebug()});$=_$; \ No newline at end of file