[Rt-commit] [svn] r1602 - in rtir/branches/1.1-TESTING/html/RTIR: . Elements Incident Report Tools

leira at pallas.eruditorum.org leira at pallas.eruditorum.org
Thu Sep 30 18:00:07 EDT 2004


Author: leira
Date: Thu Sep 30 18:00:06 2004
New Revision: 1602

Removed:
   rtir/branches/1.1-TESTING/html/RTIR/Elements/ListActions
Modified:
   rtir/branches/1.1-TESTING/html/RTIR/Create.html
   rtir/branches/1.1-TESTING/html/RTIR/Display.html
   rtir/branches/1.1-TESTING/html/RTIR/Edit.html
   rtir/branches/1.1-TESTING/html/RTIR/Incident/Create.html
   rtir/branches/1.1-TESTING/html/RTIR/Incident/Display.html
   rtir/branches/1.1-TESTING/html/RTIR/Incident/Edit.html
   rtir/branches/1.1-TESTING/html/RTIR/Incident/Reply.html
   rtir/branches/1.1-TESTING/html/RTIR/Incident/ShowChildren.html
   rtir/branches/1.1-TESTING/html/RTIR/Merge.html
   rtir/branches/1.1-TESTING/html/RTIR/Report/BulkReject.html
   rtir/branches/1.1-TESTING/html/RTIR/Tools/ScriptedAction.html
Log:
Skipping actions is handled in a callback, so there's no need for this custom element.


Modified: rtir/branches/1.1-TESTING/html/RTIR/Create.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Create.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Create.html	Thu Sep 30 18:00:06 2004
@@ -44,7 +44,7 @@
     Title => $Title &>
 % }
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 % if ($Split && !$TicketObj->CurrentUserHasRight('ModifyTicket')) {
 <%loc("You are not allowed to split this [_1].", $name)%>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Display.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Display.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Display.html	Thu Sep 30 18:00:06 2004
@@ -30,7 +30,7 @@
     current_subtab => 'RTIR/Display.html?id='.$Ticket->id,
     Title => $Title &>
 
-<& /RTIR/Elements/ListActions, actions => \@Actions &>
+<& /Elements/ListActions, actions => \@Actions &>
 
 % if ($id != 'new' && $Ticket->QueueObj->Name ne $QueueObj->Name) {
 <%loc("This ticket isn't a [_1].", $Type)%>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Edit.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Edit.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Edit.html	Thu Sep 30 18:00:06 2004
@@ -29,7 +29,7 @@
     current_subtab => "RTIR/Edit.html?id=".$Ticket->Id, 
     Title => $Title &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 % if (!$Ticket->CurrentUserHasRight('ModifyTicket')) {
 <%loc("You are not allowed to edit this [_1].", $name)%>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Incident/Create.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Incident/Create.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Incident/Create.html	Thu Sep 30 18:00:06 2004
@@ -29,7 +29,7 @@
     Title => $Title,
     Ticket => $TicketObj &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 % if ($link &&
 %      !$link->CurrentUserHasRight('ModifyTicket')) {

Modified: rtir/branches/1.1-TESTING/html/RTIR/Incident/Display.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Incident/Display.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Incident/Display.html	Thu Sep 30 18:00:06 2004
@@ -29,7 +29,7 @@
     current_subtab => 'RTIR/Display.html?id='.$Ticket->id,
     Title => loc("Incident #[_1]: [_2]", $Ticket->Id, $Ticket->Subject) &>
 
-<& /RTIR/Elements/ListActions, actions => \@Actions &>
+<& /Elements/ListActions, actions => \@Actions &>
 
 % if ($id != 'new' && $Ticket->QueueObj->Name ne "Incidents") {
 <&|/l&>This ticket isn't an Incident.</&>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Incident/Edit.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Incident/Edit.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Incident/Edit.html	Thu Sep 30 18:00:06 2004
@@ -30,7 +30,7 @@
     Title => loc("Edit Incident #[_1]: [_2]", 
     $Ticket->Id, $Ticket->Subject) &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 % if (!$Ticket->CurrentUserHasRight('ModifyTicket')) {
 <&|/l&>You are not allowed to edit this Incident.</&>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Incident/Reply.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Incident/Reply.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Incident/Reply.html	Thu Sep 30 18:00:06 2004
@@ -31,7 +31,7 @@
     Tab => 'Bulk Reply',
     Title => $title &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 <form action="Reply.html" method=get>
 <input type=hidden name=id value=<%$id%>>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Incident/ShowChildren.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Incident/ShowChildren.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Incident/ShowChildren.html	Thu Sep 30 18:00:06 2004
@@ -29,7 +29,7 @@
     current_tab => 'RTIR/Incident/ShowChildren.html?Queue=' . $Queue . 'id='.$Incident->id,
     Title => $Title &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 <h2><% loc('Total [_1]: [_2]', $Queue, $count) %></h2>
 <form action="ShowChildren.html" method="post">

Modified: rtir/branches/1.1-TESTING/html/RTIR/Merge.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Merge.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Merge.html	Thu Sep 30 18:00:06 2004
@@ -39,7 +39,7 @@
    QueryString => $QueryString,
 &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 % if (!$Ticket->CurrentUserHasRight('ModifyTicket')) {
 <%loc("You are not allowed to merge this [_1].", $Type)%>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Report/BulkReject.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Report/BulkReject.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Report/BulkReject.html	Thu Sep 30 18:00:06 2004
@@ -39,7 +39,7 @@
    QueryString => $QueryString,
 &>
 
-<& /RTIR/Elements/ListActions, actions => \@results &>
+<& /Elements/ListActions, actions => \@results &>
 
 <form action="<%$RT::WebPath%>/RTIR/Report/BulkReject.html" method=get>
 <input type=hidden name=Status value=<%$Status%>>

Modified: rtir/branches/1.1-TESTING/html/RTIR/Tools/ScriptedAction.html
==============================================================================
--- rtir/branches/1.1-TESTING/html/RTIR/Tools/ScriptedAction.html	(original)
+++ rtir/branches/1.1-TESTING/html/RTIR/Tools/ScriptedAction.html	Thu Sep 30 18:00:06 2004
@@ -28,7 +28,7 @@
     current_subtab => $current_subtab, 
     Title => $Title &>
 
-<& /RTIR/Elements/ListActions, actions => \@finalresults &>
+<& /Elements/ListActions, actions => \@finalresults &>
 
 <FORM METHOD="GET" action="ScriptedAction.html" NAME="ScriptedAction" ENCTYPE="multipart/form-data">
 <input type=hidden Name="incidentid" value=<%$incidentid%>>


More information about the Rt-commit mailing list