From 3eee705910b29f8a5ecda4abc9644ba52bd20bfc Mon Sep 17 00:00:00 2001 From: cjwatson <> Date: Mon, 10 Mar 2003 00:45:37 -0800 Subject: [PATCH] [project @ 2003-03-10 00:45:37 by cjwatson] Implement send-detail again. It's slightly different from the way it used to be, in that it now sends both interesting and boring messages rather than just boring messages, but that seems more useful anyway. --- html/server-request.html.in | 4 +--- scripts/service.in | 9 +++++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/html/server-request.html.in b/html/server-request.html.in index 3817335f..dcf57b5a 100644 --- a/html/server-request.html.in +++ b/html/server-request.html.in @@ -39,9 +39,7 @@ server.
send-detail
sends all of the `boring' messages in the
- transcript, such as the various auto-acks (you should usually use
- send
as well, as the interesting messages are not sent by
- send-detail
).
+ transcript as well, such as the various auto-acks.
index
[full
]
index-summary by-package
diff --git a/scripts/service.in b/scripts/service.in
index 75e7fae4..25c1df58 100755
--- a/scripts/service.in
+++ b/scripts/service.in
@@ -1,5 +1,5 @@
#!/usr/bin/perl
-# $Id: service.in,v 1.70 2003/03/10 00:10:52 cjwatson Exp $
+# $Id: service.in,v 1.71 2003/03/10 00:45:37 cjwatson Exp $
# ^ more or less ^
#
# Usage: service .nn
@@ -160,9 +160,10 @@ for ($procline=0; $procline<=$#bodylines; $procline++) {
} elsif (m/^(send|get)\s+\#?(\d{2,})$/i) {
$ref= $2+0;
&sendlynxdoc("bugreport.cgi?bug=$ref","logs for $gBug#$ref");
- } elsif (m/^send-detail\s+\#?(\d+)$/i) {
- &transcript("This BTS function is currently disabled, sorry.\n\n");
- $ok++; # well, it's not really ok, but it fixes #81224 :)
+ } elsif (m/^send-detail\s+\#?(\d{2,})$/i) {
+ $ref= $1+0;
+ &sendlynxdoc("bugreport.cgi?bug=$ref&boring=yes",
+ "detailed logs for $gBug#$ref");
} elsif (m/^index(\s+full)?$/i) {
&transcript("This BTS function is currently disabled, sorry.\n\n");
$ok++; # well, it's not really ok, but it fixes #81224 :)
--
2.39.5