[Rt-commit] r11678 - in rt/branches/3.8-TESTING/html: Admin/Elements Elements Ticket
ruz at bestpractical.com
ruz at bestpractical.com
Thu Apr 10 16:56:13 EDT 2008
Author: ruz
Date: Thu Apr 10 16:56:13 2008
New Revision: 11678
Modified:
rt/branches/3.8-TESTING/html/Admin/Elements/SelectSingleOrMultiple
rt/branches/3.8-TESTING/html/Elements/PageLayout
rt/branches/3.8-TESTING/html/Ticket/Update.html
rt/branches/3.8-TESTING/html/Widgets/Form/Boolean
Log:
* return back space between attr="xxx" and <%...%>
Modified: rt/branches/3.8-TESTING/html/Admin/Elements/SelectSingleOrMultiple
==============================================================================
--- rt/branches/3.8-TESTING/html/Admin/Elements/SelectSingleOrMultiple (original)
+++ rt/branches/3.8-TESTING/html/Admin/Elements/SelectSingleOrMultiple Thu Apr 10 16:56:13 2008
@@ -46,8 +46,8 @@
%#
%# END BPS TAGGED BLOCK }}}
<select name="<%$Name%>">
- <option value="1"<%$SingleDefault|n%>><&|/l&>Single</&></option>
- <option value="0"<%$MultipleDefault|n%>><&|/l&>Multiple</&></option>
+ <option value="1" <%$SingleDefault|n%>><&|/l&>Single</&></option>
+ <option value="0" <%$MultipleDefault|n%>><&|/l&>Multiple</&></option>
</select>
Modified: rt/branches/3.8-TESTING/html/Elements/PageLayout
==============================================================================
--- rt/branches/3.8-TESTING/html/Elements/PageLayout (original)
+++ rt/branches/3.8-TESTING/html/Elements/PageLayout Thu Apr 10 16:56:13 2008
@@ -68,7 +68,7 @@
% my $count = 0;
% my $class = { };
%
- <ul id="page-menu"<% (($actions && %$actions) || ($subactions && %$subactions)) && q[ class="actions-present"] | n %>>
+ <ul id="page-menu" <% (($actions && %$actions) || ($subactions && %$subactions)) && q[ class="actions-present"] | n %>>
<div><div><div>
% if ($page_tabs) {
% foreach my $tab (sort keys %{$page_tabs}) {
Modified: rt/branches/3.8-TESTING/html/Ticket/Update.html
==============================================================================
--- rt/branches/3.8-TESTING/html/Ticket/Update.html (original)
+++ rt/branches/3.8-TESTING/html/Ticket/Update.html Thu Apr 10 16:56:13 2008
@@ -86,10 +86,10 @@
<tr><td align="right"><&|/l&>Update Type</&>:</td>
<td><select name="UpdateType">
% if ($CanComment) {
-<option value="private"<% ($ARGS{'UpdateType'} && $ARGS{'UpdateType'} eq "private") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$CommentDefault |n %>><&|/l&>Comments (Not sent to requestors)</&></option>
+<option value="private" <% ($ARGS{'UpdateType'} && $ARGS{'UpdateType'} eq "private") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$CommentDefault |n %>><&|/l&>Comments (Not sent to requestors)</&></option>
% }
% if ($CanRespond) {
-<option value="response"<% ($ARGS{'UpdateType'} && $ARGS{'UpdateType'} eq "response") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$ResponseDefault |n %>><&|/l&>Reply to requestors</&></option>
+<option value="response" <% ($ARGS{'UpdateType'} && $ARGS{'UpdateType'} eq "response") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$ResponseDefault |n %>><&|/l&>Reply to requestors</&></option>
% }
</select>
</td></tr>
Modified: rt/branches/3.8-TESTING/html/Widgets/Form/Boolean
==============================================================================
--- rt/branches/3.8-TESTING/html/Widgets/Form/Boolean (original)
+++ rt/branches/3.8-TESTING/html/Widgets/Form/Boolean Thu Apr 10 16:56:13 2008
@@ -69,13 +69,13 @@
</%ARGS>
% unless ( $Default ) {
<input type="hidden" name="<% $Name %>" value="0" />\
-<input type="checkbox" name="<% $Name %>" value="1"<% $CurrentValue? ' checked="checked"': '' |n %> />\
+<input type="checkbox" name="<% $Name %>" value="1" <% $CurrentValue? ' checked="checked"': '' |n %> />\
% } else {
-<input type="radio" name="<% $Name %>" value="1"<% $CurrentValue? ' checked="checked"': '' |n %> />\
+<input type="radio" name="<% $Name %>" value="1" <% $CurrentValue? ' checked="checked"': '' |n %> />\
<% loc('Yes') %>
-<input type="radio" name="<% $Name %>" value="0"<% defined $CurrentValue && !$CurrentValue? ' checked="checked"': '' |n %> />\
+<input type="radio" name="<% $Name %>" value="0" <% defined $CurrentValue && !$CurrentValue? ' checked="checked"': '' |n %> />\
<% loc('No') %>
-<input type="radio" name="<% $Name %>" value="__empty_value__"<% !defined $CurrentValue? ' checked="checked"': '' |n %> />\
+<input type="radio" name="<% $Name %>" value="__empty_value__" <% !defined $CurrentValue? ' checked="checked"': '' |n %> />\
<% $DefaultLabel %>
% }
</%METHOD>
More information about the Rt-commit
mailing list