summaryrefslogtreecommitdiff
path: root/rt/webrt/Elements/SelectEqualityOperator
diff options
context:
space:
mode:
authorivan <ivan>2003-07-15 13:30:43 +0000
committerivan <ivan>2003-07-15 13:30:43 +0000
commitded0451e9582df33cae6099a2fb72b4ea25076cf (patch)
tree62f9855aace4bdb30674156fc0e5d8b758cde0aa /rt/webrt/Elements/SelectEqualityOperator
parent0ebeec96313dd7edfca340f01f8fbbbac1f4aa1d (diff)
reverting to vendor branch rt 3.0.4, hopefully
Diffstat (limited to 'rt/webrt/Elements/SelectEqualityOperator')
-rwxr-xr-xrt/webrt/Elements/SelectEqualityOperator18
1 files changed, 0 insertions, 18 deletions
diff --git a/rt/webrt/Elements/SelectEqualityOperator b/rt/webrt/Elements/SelectEqualityOperator
deleted file mode 100755
index f93dc1af2..000000000
--- a/rt/webrt/Elements/SelectEqualityOperator
+++ /dev/null
@@ -1,18 +0,0 @@
-%# $Header: /home/cvs/cvsroot/freeside/rt/webrt/Elements/Attic/SelectEqualityOperator,v 1.1 2002-08-12 06:17:08 ivan Exp $
-<SELECT NAME ="<%$Name%>">
-% while (my $option = shift @Options) {
-% my $value = shift @Values;
-<OPTION VALUE="<%$value%>"
-% if ($Default eq '$value') {
-SELECTED
-% }
-><%$option%></OPTION>
-% }
-</SELECT>
-
-<%ARGS>
-$Name => undef
-@Options => ('less than', 'equal to', 'greater than', 'not equal to')
-@Values => qw(< = > !=)
-$Default => undef
-</%ARGS>