[Rt-commit] [svn] r1221 - rt/branches/rt-3.1/html/Search/Elements
leira at pallas.eruditorum.org
leira at pallas.eruditorum.org
Tue Jul 13 14:14:07 EDT 2004
Author: leira
Date: Tue Jul 13 14:14:06 2004
New Revision: 1221
Modified:
rt/branches/rt-3.1/html/Search/Elements/PickBasics
rt/branches/rt-3.1/html/Search/Elements/PickCFs
rt/branches/rt-3.1/html/Search/Elements/PickCriteria
Log:
Fix formatting of Basics and CFs in the PickCriteria component (a precursor to fixing the values of things inside of these components).
Modified: rt/branches/rt-3.1/html/Search/Elements/PickBasics
==============================================================================
--- rt/branches/rt-3.1/html/Search/Elements/PickBasics (original)
+++ rt/branches/rt-3.1/html/Search/Elements/PickBasics Tue Jul 13 14:14:06 2004
@@ -21,7 +21,6 @@
%#
%#
%# END LICENSE BLOCK
-<table cellspacing=0 border=0>
<tr><td>
% foreach my $field (@fields) {
<tr><td align=right>
@@ -144,7 +143,6 @@
% }
</td></tr>
% }
-</table>
<%INIT>
my @fields = ('Attachment',
Modified: rt/branches/rt-3.1/html/Search/Elements/PickCFs
==============================================================================
--- rt/branches/rt-3.1/html/Search/Elements/PickCFs (original)
+++ rt/branches/rt-3.1/html/Search/Elements/PickCFs Tue Jul 13 14:14:06 2004
@@ -21,9 +21,8 @@
%#
%#
%# END LICENSE BLOCK
-<table cellspacing=0 border=0>
% while ( my $CustomField = $CustomFields->Next ) {
-<tr><td>
+<tr><td class=label>
% my $name;
% if ($CustomField->QueueObj->id) {
@@ -33,17 +32,19 @@
% $name = "'CF." . $CustomField->Name . "'";
% }
<% $CustomField->Name %>
- <& /Elements/SelectCustomFieldOperator, Name => $name . "Op",
- True => loc("is"),
- False => loc("isn't"),
- TrueVal=> '=', FalseVal => '!=' &>
-
+</td>
+<td>
+<& /Elements/SelectCustomFieldOperator, Name => $name . "Op",
+ True => loc("is"),
+ False => loc("isn't"),
+ TrueVal=> '=', FalseVal => '!=' &>
+</td>
+<td>
<& /Elements/SelectCustomFieldValue, Name => "ValueOf" . $name,
CustomField => $CustomField,
&>
</td></tr>
% }
-</table>
<%INIT>
my $CustomFields = RT::CustomFields->new( $session{'CurrentUser'});
Modified: rt/branches/rt-3.1/html/Search/Elements/PickCriteria
==============================================================================
--- rt/branches/rt-3.1/html/Search/Elements/PickCriteria (original)
+++ rt/branches/rt-3.1/html/Search/Elements/PickCriteria Tue Jul 13 14:14:06 2004
@@ -34,20 +34,12 @@
</table>
</td></tr>
<tr>
- <td>
+ <td colspan=3>
<hr>
</td>
</tr>
- <tr>
- <td valign=top>
- <& PickBasics &>
- </td>
- </tr>
- <tr>
- <td valign=top>
- <& PickCFs, cfqueues => \%cfqueues &>
- </td>
- </tr>
+ <& PickBasics &>
+ <& PickCFs, cfqueues => \%cfqueues &>
<tr><td> </td></tr>
</table>
More information about the Rt-commit
mailing list