summaryrefslogtreecommitdiff
path: root/paste/evalexception
diff options
context:
space:
mode:
authorianb <devnull@localhost>2005-11-09 22:14:36 +0000
committerianb <devnull@localhost>2005-11-09 22:14:36 +0000
commit2e456c8b9e7b724ef22102594bbe3d8636fd3d71 (patch)
tree25045e3ebf571f83ca79d5e366b2024da5739e19 /paste/evalexception
parent0b6e62d46bb0515b966360e70699f691cf881f77 (diff)
downloadpaste-2e456c8b9e7b724ef22102594bbe3d8636fd3d71.tar.gz
Remove extra _debug from URLs
Diffstat (limited to 'paste/evalexception')
-rw-r--r--paste/evalexception/media/debug.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/paste/evalexception/media/debug.js b/paste/evalexception/media/debug.js
index bc09488..21c23f6 100644
--- a/paste/evalexception/media/debug.js
+++ b/paste/evalexception/media/debug.js
@@ -15,7 +15,7 @@ function showFrame(anchor) {
return false;
}
var url = debug_base
- + '/_debug/show_frame?framecount=' + framecount
+ + '/show_frame?framecount=' + framecount
+ '&debugcount=' + debug_count;
var d = MochiKit.Async.doSimpleXMLHttpRequest(url);
d.addCallbacks(function (data) {
@@ -38,14 +38,14 @@ function _swapImage(anchor) {
} else {
var img = 'plus.jpg';
}
- el.src = debug_base + '/_debug/media/' + img;
+ el.src = debug_base + '/media/' + img;
}
function submitInput(button, framecount) {
var input = $(button.getAttribute('input-from'));
var output = $(button.getAttribute('output-to'));
var url = debug_base
- + '/_debug/exec_input';
+ + '/exec_input';
var vars = {
framecount: framecount,
debugcount: debug_count,