[Rt-commit] r7977 - in rt/branches/3.7-EXPERIMENTAL-RTIR-2.4: html/Admin/Users html/Elements html/SelfService html/Ticket/Elements html/User lib/RT/Interface/Web

jesse at bestpractical.com jesse at bestpractical.com
Sun Jun 3 15:38:59 EDT 2007


Author: jesse
Date: Sun Jun  3 15:38:58 2007
New Revision: 7977

Modified:
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Admin/Users/Modify.html
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/Login
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/SelectOwner
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/SelfService/Prefs.html
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Ticket/Elements/ShowHistory
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/User/Prefs.html
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Widgets/TitleBoxStart
   rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/lib/RT/Interface/Web/Handler.pm

Log:
* Pulling security updates from RT-3.7 branch

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Admin/Users/Modify.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Admin/Users/Modify.html	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Admin/Users/Modify.html	Sun Jun  3 15:38:58 2007
@@ -121,14 +121,14 @@
 <&|/l&>New Password</&>:
 </td>
 <td align="left">
-<input type="password" name="Pass1" />
+<input type="password" name="Pass1" autocomplete="off" />
 </td>
 </tr>
 <tr><td align="right">
 <&|/l&>Retype Password</&>:
 </td>
 <td>
-<input type="password" name="Pass2" />
+<input type="password" name="Pass2" autocomplete="off" />
 </td>
 </tr>
 </table>

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/Login
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/Login	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/Login	Sun Jun  3 15:38:58 2007
@@ -96,7 +96,7 @@
 
 <div class="input-row">
     <span class="label"><&|/l&>Password</&>:</span>
-    <span class="input"><input type="password" name="pass" /></span>
+    <span class="input"><input type="password" name="pass" autocomplete="off" /></span>
 </div>
 
 <div class="button-row">

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/SelectOwner
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/SelectOwner	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Elements/SelectOwner	Sun Jun  3 15:38:58 2007
@@ -94,6 +94,7 @@
 @users = sort { uc($a->Name) cmp uc($b->Name) } values %user_uniq_hash; 
 unshift(@users, $RT::Nobody);
 
+$m->callback( %ARGS, objects => \@objects, CallbackName => 'UpdateObjectList');
 
 
 </%INIT>

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/SelfService/Prefs.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/SelfService/Prefs.html	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/SelfService/Prefs.html	Sun Jun  3 15:38:58 2007
@@ -52,8 +52,8 @@
 
 % unless (RT->Config->Get('WebExternalAuth') and !RT->Config->Get('WebFallbackToInternalAuth')) {
 <&| /Widgets/TitleBox, title => loc('Change password')  &>
-<&|/l&>New password</&>: <input type="password" name="NewPass1" size="16" />
-<&|/l&>Confirm</&>: <input type="password" name="NewPass2" size="16" />
+<&|/l&>New password</&>: <input type="password" name="NewPass1" size="16" autocomplete="off" />
+<&|/l&>Confirm</&>: <input type="password" name="NewPass2" size="16" autocomplete="off" />
 </&>
 <br />
 % }

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Ticket/Elements/ShowHistory
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Ticket/Elements/ShowHistory	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Ticket/Elements/ShowHistory	Sun Jun  3 15:38:58 2007
@@ -76,7 +76,7 @@
         }
     }
 </%perl>
-<& /Widgets/TitleBoxStart, title => $title, titleright => $titleright &>
+<& /Widgets/TitleBoxStart, title => $title, titleright_raw => $titleright &>
 % }
 
 <div id="ticket-history">

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/User/Prefs.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/User/Prefs.html	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/User/Prefs.html	Sun Jun  3 15:38:58 2007
@@ -111,14 +111,14 @@
 <&|/l&>New Password</&>:
 </td>
 <td class="value">
-<input type="password" name="Pass1" />
+<input type="password" name="Pass1" autocomplete="off"/>
 </td>
 </tr>
 <tr><td class="label">
 <&|/l&>Retype Password</&>:
 </td>
 <td class="value">
-<input type="password" name="Pass2" />
+<input type="password" name="Pass2" autocomplete="off" />
 </td>
 </tr>
 </table>

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Widgets/TitleBoxStart
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Widgets/TitleBoxStart	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/html/Widgets/TitleBoxStart	Sun Jun  3 15:38:58 2007
@@ -50,8 +50,8 @@
 % if ($hideable) {
     <span class="widget"><a href="#" onclick="return rollup('<%$tid%>');" onfocus="this.blur(); return false;" title="Toggle visibility">X</a></span>
 % }
-    <span class="left"><% $title_href && qq[<a href="$title_href">] | n %><% $title |n %><% $title_href && "</a>" |n%></span>
-    <span class="right"><% $titleright_href && qq[<a href="$titleright_href">] | n %><% $titleright |n %><% $titleright_href && "</a>" |n%></span>
+    <span class="left"><% $title_href && qq[<a href="$title_href">] | n %><% $title  %><% $title_href && "</a>" |n%></span>
+    <span class="right"><% $titleright_href && qq[<a href="$titleright_href">] | n %><% $titleright  %><% $titleright_raw |n%> <% $titleright_href && "</a>" |n%></span>
   </div>
   <div class="titlebox-content <% $bodyclass %>" id="<% $tid %>">
 
@@ -64,6 +64,7 @@
 $title_class => ''
 $titleright_href => ''
 $titleright => ''
+$titleright_raw => ''
 $contentbg => "#dddddd"
 $color => "#336699"
 $id => ''

Modified: rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/lib/RT/Interface/Web/Handler.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/lib/RT/Interface/Web/Handler.pm	(original)
+++ rt/branches/3.7-EXPERIMENTAL-RTIR-2.4/lib/RT/Interface/Web/Handler.pm	Sun Jun  3 15:38:58 2007
@@ -73,6 +73,7 @@
     static_source        => (RT->Config->Get('DevelMode') ? '0' : '1'), 
     use_object_files     => (RT->Config->Get('DevelMode') ? '0' : '1'), 
     autoflush            => 0,
+    error_format        =>  ((RT->Config->Get('DevelMode') ? 'html': 'brief',
     request_class        => 'RT::Interface::Web::Request',
 ) };
 


More information about the Rt-commit mailing list