Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Vincent <jesse@bestpractical.com>1999-08-03 22:38:02 +0400
committerJesse Vincent <jesse@bestpractical.com>1999-08-03 22:38:02 +0400
commit85264aabfb9c52025c46bd6f515fc14084d1c6dc (patch)
tree60ff007b1d0d77cde60d1a6fb755f52201f44967
parent4a32a2868102941b8e72d1947ce657235e9f0d63 (diff)
first cut of -transrt-0.99.9
-rwxr-xr-xNEWS3
-rwxr-xr-xlib/rt/ui/cli/manipulate.pm9
2 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index f5ac977565..d2b8121e10 100755
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,9 @@
Minor mailui change to hopefully better strip subjecgt lines
+Added still-broken -trans option to bin/rt for steve rader's xrts
+Full support will probably appear in 1.1 soon
+
27 July 1999
------------
Added a fix to the mailgate that had problems with repeated headers, as
diff --git a/lib/rt/ui/cli/manipulate.pm b/lib/rt/ui/cli/manipulate.pm
index a55f0c414a..e8ca4ee677 100755
--- a/lib/rt/ui/cli/manipulate.pm
+++ b/lib/rt/ui/cli/manipulate.pm
@@ -48,6 +48,14 @@ sub parse_args {
}
+ elsif ($ARGV[$i] eq "-trans") {
+
+ $serial = int($ARGV[++$i]);
+ $trans = int($ARGV[++$i]);
+ &rt::req_in($serial,$current_user);
+ &print_transaction($serial, $trans);
+
+ }
elsif ($ARGV[$i] eq "-comment") {
$arg=int($ARGV[++$i]);
@@ -287,6 +295,7 @@ sub cli_help_req {
-finalprio <num <int> Change <num>'s final priority to <int>
-notify <num> Note that <num>'s requestor was notified
-merge <num1> <num2> Merge <num1> into <num2>
+ -trans <ser> <trans> Display ticket <ser> transaction <trans>
-kill <num> Permanently remove <num> from the database\n";
}