[rt-commit] [svn] r667 - in rt/branches/rt-3.1: . html/Scope
jesse at fsck.com
jesse at fsck.com
Sat Apr 3 18:17:54 EST 2004
Author: jesse
Date: Sat Apr 3 18:17:54 2004
New Revision: 667
Modified:
rt/branches/rt-3.1/ (props changed)
rt/branches/rt-3.1/Makefile.in
rt/branches/rt-3.1/html/Scope/Search.html
Log:
----------------------------------------------------------------------
r1226 at debian: jesse | 2004-04-04T08:18:44.600308Z
fixed the scope to actually run
----------------------------------------------------------------------
r1227 at debian: jesse | 2004-04-04T08:19:14.490688Z
Increasing apache restart timeouts
----------------------------------------------------------------------
Modified: rt/branches/rt-3.1/Makefile.in
==============================================================================
--- rt/branches/rt-3.1/Makefile.in (original)
+++ rt/branches/rt-3.1/Makefile.in Sat Apr 3 18:17:54 2004
@@ -492,6 +492,7 @@
apachectl:
$(APACHECTL) stop
- sleep 3
+ sleep 10
$(APACHECTL) start
+ sleep 5
# }}}
Modified: rt/branches/rt-3.1/html/Scope/Search.html
==============================================================================
--- rt/branches/rt-3.1/html/Scope/Search.html (original)
+++ rt/branches/rt-3.1/html/Scope/Search.html Sat Apr 3 18:17:54 2004
@@ -2,7 +2,6 @@
$query => undef
$per_page => 25
$page => 1
-
</%args>
<%init>
my $tix = RT::Tickets->new($session{'CurrentUser'});
@@ -10,6 +9,7 @@
my $i;
</%init>
<& Elements/Header &>
+%# {{{ javascript
<script>
var oldcurrent;
var oldcurrentcolor;
@@ -47,6 +47,7 @@
chunk.style.display = "none";
}
</script>
+%# }}}
% if ($tix->Count) {
<font size="-1">
Found <%$tix->Count%> tickets.
@@ -72,19 +73,19 @@
</center>
<br>
<table width="100%" cellspacing=0 cellpadding="3">
-% while (my $ticket = $tix->Next) {
+% while ( my $ticket = $tix->Next) {
% $i++;
-<tr id="ticket<%$ticket->Id%>"
- onclick="window.open('Work.html?id=<%$ticket->Id%>','View'); hilite(<%$ticket-Id%>);"
+<tr id="ticket<% $ticket->id %>"
+ onclick="window.open('Work.html?id=<%$ticket->id%>','View'); hilite(<%$ticket->Id%>);"
class="<%$i%2 ? 'evenline' : 'oddline'%>">
<td rowspan="2" align="right">
- <a href="Work.html?id=<%$ticket->Id%>"
+ <a href="Work.html?id=<%$ticket->id%>"
onClick="hilite(<%$ticket->Id%>)"
- target="View" ><span
- id="id-<%$ticket->Id%>"><%$ticket->Id%></span></a></td>
+ target="View" ><span id="id-<%$ticket->Id%>"><%$ticket->Id%></span></a></td>
<td colspan="4" wrap="1"><font size="-2">
- <a href="Work.html?id=<%$ticket->Id%>" target="View"
- onClick="hilite(<%$ticket->Id%>)"
+ <a href="Work.html?id=<%$ticket->Id%>"
+ target="View"
+ onClick="hilite(<%$ticket->Id%>)"
>
<%$ticket->Subject%>
More information about the Rt-commit
mailing list